micropython/tests/basics/set1.py

8 wiersze
58 B
Python

# basic sets
s = {1}
print(s)
s = {3, 4, 3, 1}
print(s)