We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 13e496d commit f37310bCopy full SHA for f37310b
listConcat.py
@@ -0,0 +1,6 @@
1
+list1 = [1, 2, 3]
2
+list2 = [4, 5, 6]
3
+
4
+list3 = list1 + list2
5
6
+print(list3)
setsConcat.py
+set1 = {1, 2, 3}
+set2 = {4, 5, 6}
+set3 = set1 | set2
+print(set3)
stringConcat.py
tupleConcat.py
+tupla1 = (1, 2, 3)
+tupla2 = (4, 5, 6)
+tupla3 = tupla1 + tupla2
+print(tupla3)
0 commit comments