fix: 🐛 strings-and-the-backslashes

This commit is contained in:
暮晨 2024-11-29 15:56:54 +08:00
parent 2420a6a400
commit 79dcb2b655

View File

@ -1357,7 +1357,7 @@ True
```py ```py
>>> r'wt\"f' == 'wt\\"f' >>> r'wt\"f' == 'wt\\"f'
True True
>>> print(repr(r'wt\"f') >>> print(repr(r'wt\"f'))
'wt\\"f' 'wt\\"f'
>>> print("\n") >>> print("\n")