Merge pull request #177 from larsks/fix/quotes

Clarify for quoting examples
This commit is contained in:
Satwik Kansal 2020-01-20 14:20:22 +05:30 committed by GitHub
commit 97c10e6fda
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
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.