0
what is the output for command print("3+7") in python?
5 Antworten
+ 6
3+7
+ 6
it will consider it as string
+ 4
Why don't You try to run this code in python? Output is 3+7. It's because python thinks about this expresion as of the string. So it outputs plain text.
+ 2
same as it because the " " was codded
output:3 +7
0