2
2

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 1 year has passed since last update.

Python3のインスタンス変数

Posted at

Python3のインスタンス変数についてのプログラムを実装しました。

# 新規作成 2023/3/22
# インスタンス変数

class MenuItem:
    def info(self,name,price):
        # 「 ○○: ¥□□ 」となるように出力してください
        self.name = name
        self.price = price
        print(self.name + ": ¥" + str(self.price))


menu_item1 = MenuItem()
menu_item1.info("サンドイッチ",300)

menu_item2 = MenuItem()
menu_item2.info("おにぎり",150)
2
2
2

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
2
2

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?