prog11_2.py

obj1 = (3.14)
print(type(obj1))
obj2 = (3.14,)
print(type(obj2))

# プログラム11-2(クラスの確認)