circuitpython/tests/basics/list_reverse.py

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

6 lines
69 B
Python
Raw Normal View History

a = []
for i in range(100):
a.append(i)
a.reverse()
print(a)