博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
python中if.while.for循环使用
阅读量:6678 次
发布时间:2019-06-25

本文共 1258 字,大约阅读时间需要 4 分钟。

 

 

以猜测一个学生的分数为例子说明:

#if猜测分数-------------------------

score=90

guess_score=int(input('score:'))

if guess_score==score:

  print('Great!')

elif guess_score>score:

  print('Guess smaller!')

else:

  print('Guess bigger!')

运行:

 

 

#while 允许猜测3次-------------------------

#if猜测分数

score=90

count=0

while count<3:

  guess_score=int(input('score:'))

  if guess_score==score:

    print('Great!')

    break

  elif guess_score>score:

    print('Guess smaller!')

  else:

    print('Guess bigger!')

    count+=1

else:

  print('byebye!')

 运行:

 

 

# for 允许最多猜测3次-------------------------

#if猜测分数

score=90

count=0

for count in range(3):

  guess_score=int(input('score:'))

  if guess_score==score:

    print('Great!')

    break

  elif guess_score>score:

    print('Guess smaller!')

  else:

    print('Guess bigger!')

  count+=1

else:

  print('byebye!')

 

#3次猜不对,选择是否再猜-------------------------

score=90

count=0

while count<3:

  guess_score=int(input('score:'))

  if guess_score==score:

    print('Great!')

    break

  elif guess_score>score:

    print('Guess smaller!')

  else:

    print('Guess bigger!')

  count+=1

  if count==3:

    continu=input("do you continue?")

    if continu=='y':

      count=0

else:

  print('byebye!')

运行:

 

转载于:https://www.cnblogs.com/lianlianqingning/p/9257291.html

你可能感兴趣的文章
Exchange 2016共享邮箱不保存已发送邮件的问题
查看>>
[C#基础知识系列]全面解析C#中静态与非静态
查看>>
SQL Server 2012笔记分享-40:自动维护索引
查看>>
C/C++各种系统开发环境搭建
查看>>
dwz navtab 限制打开数量实例
查看>>
Linq技术四:动态Linq技术 -- Linq.Expressions
查看>>
ARC __bridge modifiers demystified
查看>>
[转]HTML字符实体(Character Entities),转义字符串(Escape Sequence)
查看>>
【hoj】2651 pie 二分查找
查看>>
真正的干货是什么?
查看>>
LR函数基础(二)
查看>>
SharedPreference.Editor的apply和commit方法异同
查看>>
【Xamarin开发 Android 系列 6】 Android 结构基础(上)
查看>>
学习一样新东西行而有效的方法 学习捷径 一项由10个步骤组成的学习方法
查看>>
Spotlight实时监控Windows Server 2008
查看>>
linux shell “(())” 双括号运算符使用
查看>>
http://code.662p.com/view/5141.html
查看>>
C C++ OC指针常量和常量指针区别
查看>>
mysql函数大全
查看>>
tomcat内存溢出设置JAVA_OPTS
查看>>