What would be the output of the following code snippets?
I) print 4+9
II) print "4+9"
Answers
Answered by
7
What would be the output of the following code snippets?
- print 4+9 - SYNTAX ERROR
- print "4+9" - 4+9
Similar questions