CBSE Class 11 Computer Science Question 63 of 98

Python Programming Fundamentals — Question 25

Back to all questions
25
Question

Question 20(a)

Find out the error(s) in the following code fragment:

temperature = 90
Print temperature
Answer

The call to print function is missing parenthesis. The correct way to call print function is this:

print(temperature)