Skip to content

Commit 9b5626c

Browse files
committed
Merge pull request #438 from donaldharvey/patch-1
Clarify that there is no difference between single and double quotes
2 parents 9718b39 + 4401084 commit 9b5626c

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

en/python_introduction/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,7 @@ How about your name? Type your first name in quotes like this:
4444
>>> "Ola"
4545
'Ola'
4646

47-
You've now created your first string! It's a sequence of characters that can be processed by a computer. The string must always begin and end with the same character. This may be single (`'`) or double (`"`) quotes - they tell Python that what's inside of them is a string.
47+
You've now created your first string! It's a sequence of characters that can be processed by a computer. The string must always begin and end with the same character. This may be single (`'`) or double (`"`) quotes (there is no difference!) The quotes tell Python that what's inside of them is a string.
4848

4949
Strings can be strung together. Try this:
5050

0 commit comments

Comments
 (0)