0
def input_base():
print('please enter the number')
base = input("Number : ")
while not base.isdigit():
print("It`s not integer")
base = input("R.Number : ")
return base
...
これは私のコードがあるとエラーがある:はAttributeError「int型のオブジェクトは、Ubuntuのでipythonでisdigit何の属性を持っていない
を持っていませんはAttributeError:「int型オブジェクトが属性 'isdigit'
このコードをどのように修正できるかわかりません。私は、Ubuntuの中にpython-numpy
のようなアプリケーションをインストールしなければならないと思います...
そうですか?
'input'の代わりに' raw_input'を使います。 – jordanm
'isdigit'は文字列メソッドです。数値にはこのメソッドがありません。 – hpaulj
http://stackoverflow.com/questions/4960208/python-2-7-getting-user-input-and-manipulating-as-string-without-quotations –