micropython/tests/basics/tuple_mult.py

5 lines
49 B
Python
Raw Normal View History

2014-02-09 05:19:48 +08:00
print((0,) * 5)
a = (1, 2, 3)
c = a * 3
print(c)