スポンサーリンク
カテゴリ:Python
Python バージョン:Python2.7
Tensorflowバージョン:Tnsorflow 1.0
OSバージョン:Ubuntu 16.04.2
>>> int("10")
10
>>> int("abc")
Traceback (most recent call last):
File "<stdin>", line 1, in <module>
ValueError: invalid literal for int() with base 10: 'abc'
>>> int("1a")
Traceback (most recent call last):
File "<stdin>", line 1, in <module>
ValueError: invalid literal for int() with base 10: '1a'
>>> int("0xFF" ,16)
255
>>> int("0o11" ,8)
9
>>> int("0b10101010101" ,2)
1365
スポンサーリンク