From 8a781d8d801a58c77df857814ece76069c596811 Mon Sep 17 00:00:00 2001 From: lile-02 <483350232@qq.com> Date: Thu, 15 May 2025 14:11:49 +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 --- ...\273\223\346\236\204\344\271\213\345\205\203\347\273\204.md" | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git "a/Day01-20/10.\345\270\270\347\224\250\346\225\260\346\215\256\347\273\223\346\236\204\344\271\213\345\205\203\347\273\204.md" "b/Day01-20/10.\345\270\270\347\224\250\346\225\260\346\215\256\347\273\223\346\236\204\344\271\213\345\205\203\347\273\204.md" index e1b96d377..0408bb04d 100755 --- "a/Day01-20/10.\345\270\270\347\224\250\346\225\260\346\215\256\347\273\223\346\236\204\344\271\213\345\205\203\347\273\204.md" +++ "b/Day01-20/10.\345\270\270\347\224\250\346\225\260\346\215\256\347\273\223\346\236\204\344\271\213\345\205\203\347\273\204.md" @@ -26,7 +26,7 @@ print(t1[2]) # 98 print(t2[-1]) # 四川成都 # 切片运算 -print(t2[:2]) # ('骆昊', 43) +print(t2[:2]) # ('骆昊', 45) print(t2[::3]) # ('骆昊', '四川成都') # 循环遍历元组中的元素