You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
@@ -59,7 +59,7 @@ So doing `x = print('hello')` set `x` to `None`. Here's what happened, explained
59
59
60
60
All functions need to return something. So does the print function, and that's why it returns `None`. Of course, `x = print('hello')` is useless compared to `print('hello')`, because the print function always returns `None` and we can do `x = None` without any printing.
61
61
62
-
If you still have trouble understanding functions, feel free to come to a good Python IRC channel like [#python](https://kiwiirc.com/client/irc.freenode.net/#python), [##learnpython](https://kiwiirc.com/client/irc.freenode.net/##learnpython) or [##python-friendly](https://kiwiirc.com/client/irc.freenode.net/##python-friendly). There will be plenty of skilled people ready to help you. Just ask your question nicely and be patient.
62
+
If you still have trouble understanding functions, feel free to come to a good Python IRC channel like [#python](https://kiwiirc.com/client/irc.freenode.net/#python), [##python-friendly](https://kiwiirc.com/client/irc.freenode.net/##python-friendly) or [##learnpython](https://kiwiirc.com/client/irc.freenode.net/##learnpython). There will be plenty of skilled people ready to help you. Just ask your question nicely and be patient.
63
63
64
64
You can also pass multiple parameters separated with commas. The print function will add spaces between them.
0 commit comments