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.

29th Aug 2021, 5:07 PM
Maryam
5 odpowiedzi
+ 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.
29th Aug 2021, 5:09 PM
Abhay
Abhay - avatar
+ 2
Python is case sensitive, replace "Print" with "print".
29th Aug 2021, 10:19 PM
Simon Sauter
Simon Sauter - avatar
+ 1
Maryam your "Print" is wrong it in case is small p for "print" Your code is right but you made mistake in print
30th Aug 2021, 6:14 AM
<★Shaurya Chauhan★>(ACTIVE AGAIN✌😇🙃)
<★Shaurya Chauhan★>(ACTIVE AGAIN✌😇🙃) - avatar
0
Thank you! I didn't know it was case sensitive
30th Aug 2021, 10:16 PM
Maryam