CBSE Class 11 Informatics Practices Question 67 of 102

Python Programming Fundamentals — Question 28

Back to all questions
28
Question

Question 23(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)