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?

【Python】enumモジュール

Posted at

列挙型の定数に連番を自動で割り振る場合は、「MUSIC = enum.auto()」のようにauto()メソッドを使います。

個別に定義する場合は、「MUSIC = 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?