0
0

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.

【Python】変数・関数・クラスなどについてまとめ

Posted at

【Python】変数・関数・クラスなどについてまとめ

①変数・・・値(データ)に名前をつけたもの

my_name = "佐藤"  # my_nameが変数
number = 100      # numberが変数

②関数・・・様々な処理が1つにまとまっているもの

③クラス・・・変数や関数をまとめたもの

④オブジェクト・・・データと、そのデータに関する処理を行う関数が一塊になっているもの。

⑤インスタンス・・・オブジェクトと同じ意味(多分…)

0
0
0

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
0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?