码迷,mamicode.com
首页 > 编程语言 > 详细

python 全栈开发 whlie 循环

时间:2018-01-19 15:42:01      阅读:155      评论:0      收藏:0      [点我收藏+]

标签:class   span   body   log   嵌套循环   pytho   tin   width   div   

whlie 条件    #(当条件为真时)   #break 强制终止循环:#continue 跳出当前循环:

  print("num")    #(输出num)

 

例:

 输出1到100的偶数

 num = 1

whlie num <= 100:

  if num%2 == 0:

    print("num")

  num+=1

  

例:

yonghu = 1093166587
mima = 123456789


while True:
  aa = int(input ("用户名:"))
  bb = int(input ("密码:"))
  if aa == yonghu:
    print("欢迎登陆本页面")
    break     # break 终止循环;


else:
    print("输入错误")
  print (" ")

 

例:#嵌套循环:

height = int(input("height:"))
width = int(input("widtn:"))

  user_height = 1
while user_height <= height:
  user_width = 1
  while user_width <=width:
    print("#",end="")
  user_width+=1
  print("#")
  user_height+=1

python 全栈开发 whlie 循环

标签:class   span   body   log   嵌套循环   pytho   tin   width   div   

原文地址:https://www.cnblogs.com/Alon-x/p/8317019.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!