Python基础 input()的使用
2020-12-13 01:44
标签:标准输入 使用 标准 pre lease pytho class name 值类型 Python基础 input()的使用 标签:标准输入 使用 标准 pre lease pytho class name 值类型 原文地址:https://blog.51cto.com/5279100/2407457
注意:input函数的返回值类型为字符串
>>> num=input("Please input a number:")
Please input a number:32
>>> type(num)
>>> cus=input("Please input the custom name:")
Please input the custom name:Tom
>>> cid=input("Please input the custom ID:")
Please input the custom ID:001
>>> cus_info=‘‘‘
custom_name:{0}
custom_id:{1}
‘‘‘.format(cus,cid)
>>> print(cus_info)
custom_name:Tom
custom_id:001