# input 接受的数据都是字符串类型 password = input('请输入密码:') print(type(password)) # str print(type(int(password))) # int