Files
TencentOS-tiny/components/language/micropython/tests/basics/set_clear.py
2022-09-29 12:10:37 +08:00

4 lines
49 B
Python

s = {1, 2, 3, 4}
print(s.clear())
print(list(s))