Python——for循环语句及练习

时间:2024-03-27 11:54:12

一.for语句

1.基本格式

  • for 变量 in 序列:
    循环要执行的动作

  • range(stop): 0 - stop-1
    range(start,stop): start - stop-1
    range(start,stop,step): start - stop-1 step(步长)

示例:
Python——for循环语句及练习
2.练习

  • 用户输入一个整型数,求该数的阶乘
    5 = 5 * 4 * 3 * 2 * 1
    Python——for循环语句及练习

二.break和continue

1.二者的区别

  • break:跳出整个循环,不会再循环后面的内容
  • continue:跳出本次循环,continue后面的代码不再执行,但是循环依然继续
  • exit():结束程序的运行

示例:

  • continue
    Python——for循环语句及练习
    Python——for循环语句及练习

  • break
    Python——for循环语句及练习
    Python——for循环语句及练习

  • exit
    Python——for循环语句及练习

三.for循环综合练习

  • 有1,2,3,4四个数字
    求这四个数字能生成多少互不相同且无重复数字的三位数(122,133)

Python——for循环语句及练习
Python——for循环语句及练习

  • 用户登陆程序需求:
    1. 输入用户名和密码;
    2. 判断用户名和密码是否正确? (name=‘root’, passwd=‘westos’)
    3. 登陆仅有三次机会, 如果超>过三次机会, 报错提示;
    Python——for循环语句及练习
    Python——for循环语句及练习