diff --git a/.idea/workspace.xml b/.idea/workspace.xml
index eaaa86cf8ae9658b757f6ea600d5f022986d4add..61d1c60c3dca89136f7b704e0aa7e7e7627e6d43 100644
--- a/.idea/workspace.xml
+++ b/.idea/workspace.xml
@@ -4,32 +4,10 @@
-
-
-
-
-
-
-
-
-
+
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
+
+
@@ -56,8 +34,10 @@
"Python.01_list列表.executor": "Debug",
"Python.01_list删除.executor": "Debug",
"Python.01_while循环练习题_求1-100的和.executor": "Debug",
+ "Python.01_序列和切片.executor": "Debug",
"Python.02_list列表的常用操作.executor": "Debug",
"Python.02_列表的取值.executor": "Debug",
+ "Python.02_序列切片课后练习.executor": "Debug",
"Python.03_while循环的基础案例-猜数字.executor": "Debug",
"Python.04_值的索引.executor": "Debug",
"Python.05_tuple元组.executor": "Debug",
@@ -95,7 +75,7 @@
"Python.test_06.executor": "Debug",
"RunOnceActivity.ShowReadmeOnStart": "true",
"git-widget-placeholder": "main",
- "last_opened_file_path": "/Users/qinyingjie/Documents/python-workspace/python-demo/06_数据容器/01-列表",
+ "last_opened_file_path": "/Users/qinyingjie/Documents/python-workspace/python-demo/06_数据容器/02-字符串",
"node.js.detected.package.eslint": "true",
"node.js.detected.package.tslint": "true",
"node.js.selected.package.eslint": "(autodetect)",
@@ -107,11 +87,11 @@
}]]>
+
-
@@ -121,8 +101,8 @@
-
-
+
+
@@ -131,12 +111,12 @@
-
+
-
+
@@ -145,7 +125,7 @@
-
+
@@ -154,12 +134,12 @@
-
+
-
+
@@ -191,29 +171,6 @@
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
@@ -262,11 +219,11 @@
+
+
-
-
@@ -294,7 +251,11 @@
-
+
+
+
+
+
@@ -368,7 +329,23 @@
1722344289002
-
+
+
+ 1722357564336
+
+
+
+ 1722357564336
+
+
+
+ 1722357967372
+
+
+
+ 1722357967372
+
+
@@ -382,13 +359,14 @@
-
+
+
-
+
@@ -406,6 +384,7 @@
+
diff --git "a/06_\346\225\260\346\215\256\345\256\271\345\231\250/01_\345\272\217\345\210\227\345\222\214\345\210\207\347\211\207.py" "b/06_\346\225\260\346\215\256\345\256\271\345\231\250/01_\345\272\217\345\210\227\345\222\214\345\210\207\347\211\207.py"
index c7197b017eb59ec1444519f77e1626aea90dc449..e3363c384e9b7e6decf9a00f80ac42414d729db9 100644
--- "a/06_\346\225\260\346\215\256\345\256\271\345\231\250/01_\345\272\217\345\210\227\345\222\214\345\210\207\347\211\207.py"
+++ "b/06_\346\225\260\346\215\256\345\256\271\345\231\250/01_\345\272\217\345\210\227\345\222\214\345\210\207\347\211\207.py"
@@ -20,6 +20,7 @@ print(f"结果4:{result4}")
# 对列表进行切片,从3开始,到1结束,步长-1
my_list = [0, 1, 2, 3, 4, 5, 6]
result5 = my_list[3:1:-1]
+# result5 = my_list[3:1:1]
print(f"结果5:{result5}")
# 对元组进行切片,从头开始,到尾结束,步长-2
my_tuple = (0, 1, 2, 3, 4, 5, 6)
diff --git "a/06_\346\225\260\346\215\256\345\256\271\345\231\250/02_\345\272\217\345\210\227\345\210\207\347\211\207\350\257\276\345\220\216\347\273\203\344\271\240.py" "b/06_\346\225\260\346\215\256\345\256\271\345\231\250/02_\345\272\217\345\210\227\345\210\207\347\211\207\350\257\276\345\220\216\347\273\203\344\271\240.py"
index 0bc155952a591f73471c22dda21c7cfe48d2c665..8ed5690e4e75479da7cc8d9b826bc6d34ec2ff37 100644
--- "a/06_\346\225\260\346\215\256\345\256\271\345\231\250/02_\345\272\217\345\210\227\345\210\207\347\211\207\350\257\276\345\220\216\347\273\203\344\271\240.py"
+++ "b/06_\346\225\260\346\215\256\345\256\271\345\231\250/02_\345\272\217\345\210\227\345\210\207\347\211\207\350\257\276\345\220\216\347\273\203\344\271\240.py"
@@ -6,6 +6,7 @@ my_str = "万过薪月,员序程马黑来,nohtyP学"
# 倒序字符串,切片取出
result1 = my_str[::-1][9:14]
print(f"方式1结果:{result1}")
+
# 切片取出,然后倒序
result2 = my_str[5:10][::-1]
print(f"方式2结果:{result2}")