次のコードを実行した結果として、正しいものはどれか。 class Item: pass x = Item() name = 'book' print(x.name)
選択 1
book
選択 2
Item
選択 3
pass
選択 4
エラーになる。