circuitpython/tests/basics/set_iter.py
Diego Elio Pettenò dd5d7c86d2 Fix up end of file and trailing whitespace.
This can be enforced by pre-commit, but correct it separately to make it easier to review.
2020-06-03 10:56:35 +01:00

5 lines
47 B
Python

s = {1, 2, 3, 4}
l = list(s)
l.sort()
print(l)