PythonExtra/tests/basics/set_iter.py

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

6 lines
48 B
Python
Raw Permalink Normal View History

2014-01-12 16:17:42 +01:00
s = {1, 2, 3, 4}
l = list(s)
l.sort()
print(l)