micropython/tests/basics/list_mult.py

5 lines
48 B
Python
Raw Normal View History

2014-01-10 09:12:25 -07:00
print([0] * 5)
a = [1, 2, 3]
c = a * 3
print(c)