Files
Core2forAWS-MicroPython/tests/bytecode/mp-tests/set1.py
T

7 lines
64 B
Python

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