input()
当获得不同的数据类型时,我想打印不同的东西。我有以下脚本:
#!/usr/bin/env python
#-*- coding:utf-8 -*-
f = input("Please enter a number: ")
if f == type(int):
print("That's good")
elif f == type(str):
print("That isn't a number.")
else:
print("BrainOverflow")
此脚本始终返回 else 部分。