You've already forked Core2forAWS-MicroPython
mirror of
https://github.com/m5stack/Core2forAWS-MicroPython.git
synced 2026-05-20 10:30:31 -07:00
8d90a382cf
With range(10000), doesn't fit into 128K heap.
7 lines
173 B
Python
7 lines
173 B
Python
print(list(enumerate([])))
|
|
print(list(enumerate([1, 2, 3])))
|
|
print(list(enumerate([1, 2, 3], 5)))
|
|
print(list(enumerate([1, 2, 3], -5)))
|
|
print(list(enumerate(range(1000))))
|
|
|