We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 6461829 commit eb7c179Copy full SHA for eb7c179
6/2.py
@@ -0,0 +1,5 @@
1
+# 0 인덱스와 1 인덱스의 원소 교체하기
2
+array = [3, 5]
3
+array[0], array[1] = array[1], array[0]
4
+
5
+print(array)
0 commit comments