micropython/tests/basics/list_mult.py

5 lines
48 B
Python
Raw Normal View History

2014-01-11 00:12:25 +08:00
print([0] * 5)
a = [1, 2, 3]
c = a * 3
print(c)