micropython/tests/basics/list_sum.py

6 wiersze
59 B
Python

# list addition
a = [1,2,3]
b = [4,5,6]
c = a + b
print(c)