prog9_28.py

s = {1, 2, 3, 4, 3, 2, 1, 0, -1}
print(s)
t = set(range(0,20,2))
print(t)

# プログラム9-28(集合オブジェクトを作る)