We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent d0ef329 commit 26986f3Copy full SHA for 26986f3
lists.py
@@ -0,0 +1,7 @@
1
+a=[1,2,12,4,100,100]
2
+for i in range(3):
3
+ a.insert(0,i)
4
+a.sort()
5
+print(a)
6
+a.remove(max(a))
7
0 commit comments