We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent b888254 commit c3e0f0eCopy full SHA for c3e0f0e
3_for/Chien_list.py
@@ -0,0 +1,9 @@
1
+list1 = ["a","b","c","d","e"]
2
+print(list1[0])
3
+print(list1[4])
4
+print(list1[1:4])
5
+list1.append("f")
6
+print(list1)
7
+list2 = list(range(5))
8
+list1.extend(list2)
9
0 commit comments