データの型を調べる type() python code Twitter Facebook LINE コピー 2021.10.02 print(type(4)) →<class ‘int’>print(type(2.5)) → <class ‘float’>print(type(‘あいうえお’)) → <class ‘str’>
コメント