We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 7c6c55d commit 72f2143Copy full SHA for 72f2143
1 file changed
python_introduction/README.md
@@ -55,6 +55,18 @@ You can also multiply strings with a number:
55
56
>>> "Ola" * 3
57
'OlaOlaOla'
58
+
59
+If you need to put an apostrophe inside your string, you have two ways to do it.
60
61
+Using double quotes:
62
63
+ >>> "Runnin' down the hill"
64
+ "Runnin' down the hill"
65
66
+or escaping apostrophe with a backslash (`\`):
67
68
+ >>> 'Runnin\' down the hill'
69
70
71
Nice, huh? To see your name in uppercase letters, simply type:
72
0 commit comments