From e5a619484d817ab38755ecaf3d543bb199136b51 Mon Sep 17 00:00:00 2001 From: moye12325 Date: Mon, 9 Jun 2025 16:17:25 +0800 Subject: [PATCH] =?UTF-8?q?Update=2010.=E5=B8=B8=E7=94=A8=E6=95=B0?= =?UTF-8?q?=E6=8D=AE=E7=BB=93=E6=9E=84=E4=B9=8B=E5=85=83=E7=BB=84.md?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit bug fixes --- Day01-20/10.常用数据结构之元组.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Day01-20/10.常用数据结构之元组.md b/Day01-20/10.常用数据结构之元组.md index e1b96d3..0408bb0 100755 --- a/Day01-20/10.常用数据结构之元组.md +++ b/Day01-20/10.常用数据结构之元组.md @@ -26,7 +26,7 @@ print(t1[2]) # 98 print(t2[-1]) # 四川成都 # 切片运算 -print(t2[:2]) # ('骆昊', 43) +print(t2[:2]) # ('骆昊', 45) print(t2[::3]) # ('骆昊', '四川成都') # 循环遍历元组中的元素