📜  如何说输入必须是数字 python 代码示例

📅  最后修改于: 2022-03-11 14:47:05.856000             🧑  作者: Mango

代码示例2
user_input = input("Enter something:")

if type(user_input) == int:
    return user_input
else:
    print("Not a number")