prog8_29.py

L = [1, 2, 3, "はい"]
for item in L:
    print(item)

# プログラム8-29(リストとその要素)