micropython/tests/basics/set_basic.py

18 lines
203 B
Python
Raw Permalink Normal View History

# basic sets
s = {1}
print(s)
s = {3, 4, 3, 1}
print(sorted(s))
2015-08-28 13:31:31 -06:00
# expression in constructor
s = {1 + len(s)}
print(s)
2015-08-28 13:31:31 -06:00
# Sets are not hashable
try:
{s: 1}
except TypeError:
print("TypeError")