Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
プロトブフがあるとします
enum Color { RED = 0; GREEN = 1; BLUE = 2; };
Python から、定義されたすべての値や名前のリストを取得するにはどうすればよいですか?
enum は Python の辞書のようなもので、
からキー (名前)dict.keys()と から値を取得しますdict.values()。
dict.keys()
dict.values()