Answer:
The amount to be paid is €2.88 for the amount of power consumed
Explanation:
The first thing to do here is to convert the power consumption to kilo-watt
1 kilowatt = 1000 watt
x kilowatt = 1200 watt
x = 1200/1000 = 1.2 KW
we now convert this to kilowatt hour by multiplying the number of hours by the number of kilowatt.
That would be 20 * 1.2 = 24 KWh
Now, the charge is 0.12€/kWh
for 24 kWh, we have 24 * 0.12 = €2.88
The answer is the Processor register.
Answer:
Try to restart the computer or something.
Explanation:
Answer:
The # marker is used to mark a line comment in python.
Explanation:
The line that starts with # is a comment.Python will ignore the lines that starts with #.These comments can be used to add extra information in the python code.
For example:-
Following is the python code with comments.
names=['sam','optimus','bumblebee'] #names is the list of transformers characters.
for i in names:
print(i) #printing the names.
There are 2 comments in the python code written above.These are ignored by python.