Skip to content

Commit 29df7a5

Browse files
committed
Update 3.md
1 parent 0b7b7f6 commit 29df7a5

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

3.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -59,7 +59,7 @@ So doing `x = print('hello')` set `x` to `None`. Here's what happened, explained
5959

6060
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.
6161

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.
6363

6464
You can also pass multiple parameters separated with commas. The print function will add spaces between them.
6565

0 commit comments

Comments
 (0)