12 lines
197 B
Python
12 lines
197 B
Python
|
listA = [2, 4.4, "HiHi", 15, 6.97]
|
||
|
listB = [12, 82, "BlaBla"]
|
||
|
|
||
|
listC = listA + listB
|
||
|
|
||
|
print("listC: ", listC)
|
||
|
|
||
|
listC.reverse()
|
||
|
print("listC reverse: ", listC)
|
||
|
|
||
|
#print("listC sort: ", listC.sort())
|