Clarify for quoting examples

The example of the use of backslash to escape a double-quote makes
more sense when used inside a double-quoted string. If the string is
quoted with single quotes, one could of course just write 'wt"f'
withouth requiring any escaping.
This commit is contained in:
Lars Kellogg-Stedman 2020-01-19 10:19:17 -05:00
parent de113d2491
commit 3e99005ae4
1 changed files with 1 additions and 1 deletions

2
README.md vendored
View File

@ -1210,7 +1210,7 @@ True
- In a usual python string, the backslash is used to escape characters that may have a special meaning (like single-quote, double-quote, and the backslash itself).
```py
>>> 'wt\"f'
>>> "wt\"f"
'wt"f'
```
- In a raw string literal (as indicated by the prefix `r`), the backslashes pass themselves as is along with the behavior of escaping the following character.