简简单单学Python

只是希望自己能够坚持学习,当个自己的学习笔记,难免有错

用户输入input()和while循环:

1、函数input("提示信息:"): 明确提示信息,使得用户在输入时一目了然

score=input("Your score is:")
print(score)

Your score is:99
99

2、用int()来获取数值输入:

score=input("Your score is:")
score_1=int(score)
print(score_1)
if score_1>90:
	print("Your score is "+score+",you are a good student.")
else:
	print("Your score is "+score+",Never give up.")

Your score is:87
87
Your score is 87,Never give up.


Your score is:99
99
Your score is 99,you are a good student.

3、while循环:直到条件不满足则跳出循环

让用户选择何时退出: 代码不是很好

score1="If you do not want to see the score,you can input 'Go out'"
score1+="\nYour score is:"
message=""
while message!='Go out':
	message=input(score1)
	if message!='Go out':
		print(message)

If you do not want to see the score,you can input 'Go out'
Your score is:Go out

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值