From 79dcb2b6557187533806fd893b8f9d8b5b2ce7cb Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E6=9A=AE=E6=99=A8?= Date: Fri, 29 Nov 2024 15:56:54 +0800 Subject: [PATCH] =?UTF-8?q?fix:=20=F0=9F=90=9B=20strings-and-the-backslash?= =?UTF-8?q?es?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index cff67f8..838e90f 100755 --- a/README.md +++ b/README.md @@ -1357,7 +1357,7 @@ True ```py >>> r'wt\"f' == 'wt\\"f' True - >>> print(repr(r'wt\"f') + >>> print(repr(r'wt\"f')) 'wt\\"f' >>> print("\n")