micropython/tests/bytecode/mp-tests/set1.py

7 wiersze
64 B
Python

x = set()
x = {1}
x = {1,}
x = {1, 2}
x = {1, 2,}
x = {1, 2, 3}