micropython/tests/basics/tuple_mult.py

5 wiersze
49 B
Python

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