![]() |
variable prints without being declared. - Printable Version +- Python Forum (https://python-forum.io) +-- Forum: Python Coding (https://python-forum.io/forum-7.html) +--- Forum: General Coding Help (https://python-forum.io/forum-8.html) +--- Thread: variable prints without being declared. (/thread-34247.html) |
variable prints without being declared. - ClockPillow - Jul-11-2021 I'm a beginner new to this site and I don't know if this has been posted before, so please be patient with me. This isn't an error in as much as I'm curious. I declared a variable with the print function. var = print("Hello")It printed even without me calling the variable. Why is that? RE: variable prints without being declared. - deanhystad - Jul-11-2021 var is not printing, the str "Hello" is printing. The value of var is None because that is the value returned by the print function. RE: variable prints without being declared. - ClockPillow - Jul-11-2021 (Jul-11-2021, 12:05 AM)deanhystad Wrote: var is not printing, the str "Hello" is printing. The value of var is None because that is the value returned by the print function. Thanks for that. I figured it out thanks to you. |