0
Why do i keep getting "undefined variable print" in python?
Whenever I try a print function in practices, it doesn't work. It says "undefined variable print". E.g. print(24*60*60*30) or print (7425 / 550) I don't know how to change them.
5 Answers
+ 2
Can you share the link of code you are trying to run (by saving it as a code bit) ? I doubt it is some other language playground where you are running the code.
+ 2
Python is case sensitive, replace "Print" with "print".
+ 1
Maryam your "Print" is wrong it in case is small p for "print"
Your code is right but you made mistake in print
0
Thank you! I didn't know it was case sensitive