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

7 wiersze
64 B
Python
Czysty Zwykły widok Historia

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