Python Forum
Why does Python Print return None
Thread Rating:
  • 1 Vote(s) - 1 Average
  • 1
  • 2
  • 3
  • 4
  • 5
Why does Python Print return None
#1
Hey all. I'm studying for a final. Wondering why using 
print(print('hello') return
Hello
None
Can't wrap my head around it. 

Thanks everyone.

-Steven
Reply
#2
First of all, your code doesn't do that. You code has a syntax error in it, and even if it didn't you can't print a lower case hello and get an upper case Hello printed.

Why does it return None? It has to return something, because every Python function does. Now think about this situation:

>>> print('Hello world!')
Hello world!
That's what happens when print returns None, because None does not have a repr. So it prints the string to print, and then prints the repr of the return value, which is nothing. Say print returned the string it printed. Then you would get this:

>>> print('Hello world!')
Hello world!
'Hello world!'
It would display 'Hello world!' twice, once without quotes, and once with quotes (the repr of the string). That would be silly. And that's why print returns None.
Craig "Ichabod" O'Brien - xenomind.com
I wish you happiness.
Recommended Tutorials: BBCode, functions, classes, text adventures
Reply
#3
Well, I mean that if I type print(print("hello")) at the python command line, it literally returns hello and then on the next line, slightly indented, None.
Reply
#4
Quote:>>> print(print("hello"))
hello
None
All functions return None if not returning anything else. And in python3.x print is a function. The inner hello function runs, and prints hello. Then returns...which returns None. So the outer print becomes
Quote:print(None)
Which that print outputs the return value of None.
Recommended Tutorials:
Reply
#5
Thank you!
Reply
#6
first of all, your code:
print(print('hello') return
is missing a closing parentheses and should be
print(print('hello'))
There is no need for a return statement. and it shouldn't be included (but it won't hurt the code)
Reply
#7
What should it return? The text that was being printed to screen/file/network? A success/failure code?
It returns None, because it doesn't really make sense for it to return anything else. It does a thing, it doesn't change a thing.
Reply


Possibly Related Threads…
Thread Author Replies Views Last Post
  Question on "define function"; difference between return and print extricate 10 4,596 Jun-09-2020, 08:56 PM
Last Post: jefsummers

Forum Jump:

User Panel Messages

Announcements
Announcement #1 8/1/2020
Announcement #2 8/2/2020
Announcement #3 8/6/2020