Python如果要生成交互式程序,需要满足两点:
- 获取用户输入,即常见的登录界面,请求用户输入用户名和密码
- 学会控制程序的运行时间
今天本文重点讲input()。
input()的使用input()的工作原理:即程序暂停运行,让用户根据提示prompt输入信息,Python接受用户输入的一个参数,然后将用户的输入信息赋值到一个变量,最后可以通过print()将获取的用户信息输出。
1、创建单行字符串
#注意冒号后有一个空格,以便将用户输入与提示区分message = input("Please enter your username: ") print(message)
2、创建多行字符串
prompt = "Welcome you to my Python world."prompt += "nTell me you name: "message = input(prompt)print(f"nNice to meet you, {message}.")
3.注意Python会默认用户输入的参数为字符串,如果需要进行数值运算,需要将字符串str() 转化为整数int()或者含有小数点的数 float()。否则会出现TypeError。假如不清楚number的类型,可以利用type(number)进行检查。
常见的数值运算包括:加+ , 减- ,乘* , 除/ , 乘方**、整除//、模除%(可用来判断奇偶数)
number = input("Please enter a number: ")number = int(number)if number % 2 == 0: print(f"nThe number {number} is even.")else: print(f"nThe number {number} is odd.")