We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 434fd39 commit f9163cbCopy full SHA for f9163cb
1 file changed
using-functions.md
@@ -99,11 +99,12 @@ world
99
If you want to print a backslash, you need to **escape** it by typing
100
two backslashes:
101
102
-```py
103
->>> print('hello\\nworld')
104
-hello\nworld
105
->>>
106
-```
+[comment]: # (For some reason, GitHub's syntax highlighting doesn't)
+[comment]: # (work here.)
+
+ >>> print('hello\\nworld')
+ hello\nworld
107
+ >>>
108
109
You can also pass multiple arguments to the print function. Separate
110
them with commas, and print will add spaces between them.
0 commit comments