Python 用户输入和while循环

1.函数input()的工作原理

函数input()让程序暂停运行,等待用户输入一些文本。获得用户输入后,Python将其赋给一个变量,以方便你使用。

1.1 实现一个简单的用户输入并打印内容

#注意:需要使用终端运行,sublime无法让用户输入
message = input("input:")
print(message)

1.2 使用int()来获取数值输入

使用int()将字符串转int
height = input("Hot tall are you,in inches?")
height  = int(height)
if height >= 48:
	print("\nYou're tall enough to ride")
else:
	print("\nYou'll be able  to ride")

2.  while循环简介

for循环用于针对集合中的每个元素都执行一个代码块,而while循环则不断运行,直到指定条件不满足为止。

2.1 使用while循环

使用while循环打印数字1-5。

current_numer = 1
while current_numer <= 5:
	print(current_numer)
	current_numer += 1

2.2 让用户选择何时退出

prompt = "\nTell me something,and I will repeat it back to you:"
prompt += "\n Enter 'quit' to end you program."
message = ""
while message != 'quit':
	message = input(prompt)
	print(message)

2.3 使用标志退出

prompt = "\nTell me something,and I will repeat it back to you:"
prompt += "\n Enter 'quit' to end you program."
message = ""
active = True
while active:
	message = input(prompt)
	if message == 'quit':
		active = False
	else:
		print(message)

你可能感兴趣的:(Python,python,输入,循环)