だから私は次のコードを持っています:
user_input = raw_input("Enter an integer, string or float:")
input_type = type(user_input)
if input_type == "str":
print "Your string was %s." % user_input
elif input_type == "int":
input_type = int(input_type)
print "Your integer was %d." % user_input
elif input_type == "float":
input_type = int(input_value)
print "Your float was %d." % user_input
else:
print "You did not enter an acceptable input."
これは機能しません— のせいだと思いますif
— だから私はそれを次のように変更しました:
if "str" in input_type
floatと"int"
integer の場合、エラーが発生します。
Traceback (most recent call last):
File "types.py", line 4, in <module>
if "str" in input_type:
TypeError: argument of type 'type' is not iterable
なぜこれが発生し、どうすれば修正できますか?