Skip to content

Commit

Permalink
Clarify S3.1.2 in tutorial docs
Browse files Browse the repository at this point in the history
  • Loading branch information
davidlowryduda committed Jun 10, 2024
1 parent e21057b commit 0dc7228
Showing 1 changed file with 5 additions and 4 deletions.
9 changes: 5 additions & 4 deletions Doc/tutorial/introduction.rst
Original file line number Diff line number Diff line change
Expand Up @@ -142,10 +142,11 @@ Text
----

Python can manipulate text (represented by type :class:`str`, so-called
"strings") as well as numbers. This includes characters "``!``", words
"``rabbit``", names "``Paris``", sentences "``Got your back.``", etc.
"``Yay! :)``". They can be enclosed in single quotes (``'...'``) or double
quotes (``"..."``) with the same result [#]_.
"strings") as well as numbers. This includes characters (“``!``"), words
(“``rabbit``"), names (“``Paris``"), sentences (“``Got your back.``"), and even
special characters and emoticons (“``Yay! :)``"). They can be enclosed in
single quotes (``'...'``) or double quotes (``"..."``) with the same
result [#]_.

>>> 'spam eggs' # single quotes
'spam eggs'
Expand Down

0 comments on commit 0dc7228

Please sign in to comment.