Pythonで定義できる型一覧
1 2 3 4 5 6 7 8 9 10 11 12 13 14 |
文字列 = 'Hello world'; 整数 = 1; 小数点 = 4.5; ブール = True; リスト = [1,2,3,'aaa']; タプル = (10, 20, 30, 'aaa'); 辞書 = {'a':10, 'b':20, 'c':30, 'd':'aaa'} print(type(文字列)); print(type(整数)); print(type(小数点)); print(type(ブール)); print(type(リスト)); print(type(タプル)); print(type(辞書)); |
上記コードを実行sすると下記のとおりとなる。
1 2 3 4 5 6 7 8 |
papanda925@DESKTOP-AJDBM1N:~$ /usr/bin/python3 /home/papanda925/Untitled-1.py <class 'str'> <class 'int'> <class 'float'> <class 'bool'> <class 'list'> <class 'tuple'> <class 'dict'> |
コメント