micropython/tests/basics/list_mult.py

5 wiersze
48 B
Python

print([0] * 5)
a = [1, 2, 3]
c = a * 3
print(c)