今天是小编持续更新关于Python的知识总结以及Python实践项目应用的第10天,带你利用零碎时间自学最受欢迎的编程语言之一Python语言。你和小编一起打卡了吗?
目录
1、input()函数原理
2、将输入存储在变量作为input函数的参数
3、使用int()来获取数值输入
4、在Python2.7中获取输入
1、input()函数原理
函数input() 让程序暂停运行, 等待用户输入一些文本,即默认输入为字符串。
函数input() 接受一个参数: 即要向用户显示的提示或说明, 让用户知道该如何做。
下边为input()函数简单的例子:
1# 将输入存储在变量message中
2message = input("Tell me something, and I will repeat it back to you: ")
3print(message) # 输出变量
运行结果:
1# 冒号之前是input函数的提示语,冒号之后是作为input函数的输入,存储在变量message中
2Tell me something, and I will repeat it back to you: Hi! What about you?
3Hi! What about you? # print结果
2、将输入存储在变量作为input函数的参数
有的时候,可能提示语太多,我们可以将提示语放在一个变量中,作为input函数的参数
简单例子:
1prompt = "If you tell us who you are, we can personalize the messages you see."
2prompt += "\nWhat is your first name? " # 这里使用换行符,使得提示语可以多行显示
3
4name = input(prompt) # prompt一个变量作为input函数的参数
5print("\nHello, " + name + "!")
运行结果:
1If you tell us who you are, we can personalize the messages you see.
2What is your first name? David # 提示语和输入(David为输入)
3
4Hello, David! # 输出结果
3、使用int()来获取数值输入
由于input函数将用户输入解读为字符串。所以,如果在使用中,输入的是数字,后续程序中将作为数值使用,则需要用int()将数字的字符串表示转换为数值表示。
下面的程序, 判断一个人是否满足坐过山车的身高要求:
1#!/usr/bin/env python
2# -*- coding:utf-8 -*-
3height = input("How tall are you, in inches? ")
4height = int(height) # 将字符串表示转换为数值表示
5if height >= 36:
6 print("\nYou're tall enough to ride!")
7else:
8 print("\nYou'll be able to ride when you're a little older.")
运行结果:
1How tall are you, in inches? 18 # 提示语输入
2
3You'll be able to ride when you're a little older. # 输出结果
4、在Python2.7中获取输入
如果你使用的是Python2.7版本,应使用函数raw_input()来提示用户输入,同样也是讲输入解读为字符串