Computer Science, asked by rajasribavani617, 7 days ago

what is the error in this python program?



Attachments:

Answers

Answered by ny6046220
2

Answer:

The most common reason of an error in a Python program is when a certain statement is not in accordance with the prescribed usage. Such an error is called a syntax error. The Python interpreter immediately reports it, usually along with the reason. >>> print "hello" SyntaxError: Missing parentheses in call to 'print'.

Similar questions