mirror of
https://github.com/W3SLAV/micropython.git
synced 2025-06-20 12:35:34 -04:00
6 lines
59 B
Python
6 lines
59 B
Python
# list addition
|
|
a = [1,2,3]
|
|
b = [4,5,6]
|
|
c = a + b
|
|
print(c)
|