内容提要 一 : while 循环 while 的基本语句操作 如何终止循环 二 :格式化输出 三 :运算符号 四 :编码初识别 一 : while 循环 1  >>>>while 的基本语句操作 结构: while 条件 循环体 ep: while i<101 : if i %2==1 : print(i) i = i +1 2 >>>>>>>如何终止循环     ^  1 : 循环条件发生改变 ^  2 : 遇到break   …
一.while循环 1.基本循环(死循环) while 条件: 循环体 2.使用while计数 count = 0 # 数字里面非零的都为True while True: count = count + 1 print(count) 3.控制while循环的次数 count = 0 while count < 100: count = count + 1 print(count) # 打断循环的方式 1.自己修改条件 2.使用break关键字 4.break关键字 break--终止当前循环,下…
一.主要内容:1.while 循环 (难点)while 条件: 循环体 break: 直接跳出循环continue:停止当前本次循环,继续执行下一次循环.不会中断循环能让循环退出:(1)break (2)改变循环条件 2.格式化输出 %s %d f{变量名}#格式化输出例:print("我叫%s,我来自%s,我的年龄是%s,爱好是%s" % (name, address, age, like))#新版本的格式化输出例:print(f"我叫{name},我来自{address}…
python全栈开发 1循环 2break和continue的区别 3格式化输出 4运算符 5编码 一.流程控制while循环 while条件: 代码块(循环体) 1.死循环; while True; print(".....") 例: while True: print('你是萌萌么') #死循环 永远都停不下来 # 你是萌萌么 你是萌萌么 你是萌萌么 你是萌萌么 你是萌萌么 你是萌萌么 你是萌萌么 你是萌萌么 你是萌萌么 你是萌萌么 ....... 2.break循环: 变量 =…
流程控制之while循环 条件循环:while,语法如下 while 条件: # 循环体 # 如果条件为真,那么循环体则执行,执行完毕后再次循环,重新判断条件... # 如果条件为假,那么循环体不执行,循环终止 #打印0-10 count=0 while count <= 10: print('loop',count) count+=1 #打印0-10之间的偶数 count=0 while count <= 10: if count%2 == 0: print('loop',count) co…
1.while循环:不断的重复着某件事就是循环 2.while循环图解: 3.break:终止当前循环. 4.continue就是跳出本次循环.继续下次循环. 下方代码都不会执行. 改变循环条件来终止循环. 5.打印4-67写法一: count = 4while True: print(count) if count == 67 : break count += 1 打印4-67写法二: count = 4while count < 68 : print(count) count += 1打印4…
Python基础篇(格式化输出,运算符,编码): 格式化输出: 格式:print ( " 内容%s" %(变量)) 字符类型: %s  替换字符串      %d 替换整体数字    %f替换浮点型 ------------ info of Alex Li -----------                          ------------ info of %s -----------  Name : Alex Li                           …
一:for 循环 1.          简单的说如果让你输出1到100之间的整数,用while该怎么实现呢? i= : print(i) i+= 看着是不是只有4行,但是有没有更加简单的办法,不妨我们使用for循环来试一下 for i in range(1,101,): print(i) 是不是更加简单,所以说我们总会选择最简单的方法去达到我们的目的九九乘法表:使用while while i <= 9: j = 1 while j <= i: print(str(j) + "*&q…
一.流程控制之--while 循环 循环就是重复做同一件事,它可以终止当前循环,也可以跳出这一次循环,继续下一次循环. 基本结构(基本循环) while 条件: 循环体 示例 # 这是一个模拟音乐循环播放的代码 while True: print('画') print('桥头姑娘') print('四块五的妞') 终止循环 改变条件(根据上面的流程,改变条件,就会终止循环) 可以用关键字:break,来终止循环. 调用系统命令:quit().exit() 后面会讲到,不建议大家使用. 关键字:c…
一.while循环 1.基本结构 while 条件:            循环体   流程: 判断条件是否为真. 如果真, 执行代码块. 然后再次判断条件是否为真 .如果真继续执行代码块....   直到条件变成了假. 循环退出 while 条件:           循环体    else:                #循环在正常情况跳出之后会执⾏这⾥ 代码块      # 当条件不成立的时候执行 eg1: 1-100求和 count = 1 sum = 0 while count <=…
一.while循环 while 条件: 代码块(循环体) 流程:判断条件是否为真,如果是真,执行代码块.然后再次判断条件是否为真,如果为真继续执行代码块... 直到条件变成了假,退出循环 #死循环:永远都停不下来 while True: print('$%@!$') #打印十次: count = 1 while count <= 10: #当count小于等于10的时候执行 print("#@!$@#!$") count = count + 1 #count += 1 #coun…
第二天课程整理 while 循环 why : while ' 循环' 的意思 what : while 无限循环 how : 1.基本结构 while + 条件 循环的代码 初识循环 while true: print('狼的诱惑')                先判断 条件 print('我们不一样')     如果是true  进行循环 print('月亮之上') 循环到底部,再次判断条件 条件成立继续循环 print('庐州月')                   print('人间'…
一.while循环语句 1.while 条件:(如果条件是真, 则直接执⾏循环体. 然后再次判断条件. 直到条件是假. 停⽌循环) 循环体(break  continue) 2. break: 立刻跳出循环. 打断的意思 continue: 停⽌本次循环, 继续执⾏下⼀次循环 3.while 条件: 循环体(break  continue) else: 语句块 二.格式化输出     1.%s  全能占位  (可占位字符串.数字.布尔值)       %d  数字占位符       %f   浮…
一,while 循环 1. 循环. while循环 while 条件: 代码块(循环体) 执行流程: 1. 判断条件是否为真. 如果真. 执行代码块 2. 再次判断条件是否为真...... 3. 当条件为假.执行else 跳出循环. 循环结束例 count=1while count<3: print("嘿嘿") count=count+1 while True: s=input("输入密码:") if s=="5": break print…
一.while循环 while 条件: 语句块(循环体)     #判断条件是否成立,若成立执行循环体,然后再次判断条件...直到不满足跳出循环 else: 当条件不成立的时候执行这里,和break没有关系 break  终止当前循环 continue 停止本次循环,继续执行下一次循环 #如:求前100奇数的和. num = 1 sum = 0 while num <= 99: num += 2 sum =sum+num #累加运算,把num的值累加到sum print(sum) num = 1…
今日内容 1.while循环 while Ture:             content = input ("请输入你要喷的内容",输入Q退出)             if content == ""                 continue(继续,如果是break就是直接退出循环)             if content == "Q":                  break             print(&qu…
  1.while循环 1.while 基本机构: while 条件: 循环体 执行流程: 当条件成立时为真,执行循环体. 再次判断条件是否成立,如果成立再次执行. 当判断条件结果为假时,跳出循环,本次循环结束. 基本结构2: count = 1 while True: # 定义一个死循环 ") # 每次循环执行这个代码块 if :count == 5: #再循环中做判断,当count=5时,执行if下的代码块 # break代表立刻终止此次循环 count += 1 基本机构3: count…
一.while循环 1.1语法 while 条件: 代码块(循环体) else: 当上面的条件为假的的时候,才会执行. 执行顺序:先判断条件是否为真,如果是真的,执行循环体,再次判断条件,直到条件不成立,停止循环. 1.2break和continue的区别 break用来停止当前本层循环. continue用来停止本次循环,会继续执行下一次. 二.格式化输出(输出带有一些格式,美观) %s:占位字符串(也可以用来占位数字,万能的) %d:占位数字 注:在字符串中如果使用了%s,%d这样的占位符,…
1. while循环 while 条件: 循环体(break,continue) else: 循环体(break,continue) break:彻底干掉一个循环,直接跳出. continue:停止当次循环,继续执行下一次循环. while True: content = input("你要输入的内容,输入Q退出:") if content ="" continue #如果输入为空,会执行下一次循环,接着出现 你要输入的内容: if content = "…
while 循环 while 条件:    循环体 循环如何终止? 改变条件. flag = Truewhile flag:    print('狼的诱惑')    print('我们不一样')    print('月亮之上')    flag = False  print('庐州月')    print('人间') ​ 1~ 100 所有的数字 count = 1 flag = True while flag: print(count) count = count + 1 if count =…
day02 python   一.循环: while循环     while expression:         while_suite     1.break 停止当前循环(如果多个循环嵌套, 只能跳出一层循环)     2.in     3.continue 停止本次循环之后的代码, 继续下次循环     4.else  count = 1 while count < 10:     print(count)     count += 1     if count == 5:      …
一.题型 1.使用while循环输入 1 2 3 4 5 6  8 9 10 count = 0 while count < 10: count += 1   #count = count + 1 if count == 7: print(' ') else: print(count) 使用while循环输入 1 2 3 4 5 6 8 9 10 count = 0 while count < 10: count += 1   # count = count + 1 if count == 7…
格式化输出 顾名思义,按照个人意愿定制想输出的格式. name = input('请输入姓名:') age = int(input('请输入年龄:')) job = input('请输入工作:') hobbie = input('您的爱好:') msg='''********information of %s******** 姓名 : %s 年龄: %d 工作: %s 爱好: %s ***********************''' %(name,name,age,job,hobbie) pr…
目录 1.while循环 -- 死循环 2.字符串格式化: 3.运算符 4.编码 1.while循环 -- 死循环 while 条件: 循环体 打断死循环: break -- 终止当前循环 改变条件 -- 自动定义修改控制执行次数 关键字: break -- 终止当前循环 continue -- 伪装成循环体中最后一行代码(官方:跳出本次循环,继续下次循环) while else:while条件成立的时候就不执行了,条件不成立的时候就执行else 2.字符串格式化: % -- 占位 %s --…
python:用户交互: 等用户输入,做反应: username=input("username:")password=input("password:")print(username,password) 注释:# 1.不好理解的地方加注释 2.中文可用中文,英文,不用拼音 -----------------------------数据类型:integer int float C语言明确告诉计算机是什么类型 int age=12 python不需要用户写 解释器做了…
day2 运算符-while循环 1.while循环 while循环基本结构; while 条件:      结果    # 如果条件为真,那么循环则执行    # 如果条件为假,那么循环不执行 debug模式显示每一步运行结果; 经典代码格式错误与优化: 错误示范:count = 1while count < 11:    if count == 7:        count += 1    else:        print(count)    count += 1          #…
1.内容总览 while循环 格式化输出 运算符 and or not 编码的初识 2. 具体内容 while 循环 where:程序中:你需要重复之前的动作,输入用户名密码时,考虑到while循环. what:while 无限循环. how: 基本结构: while 条件: 循环体 初识循环 while True: print('狼的诱惑') print('我们不一样') print('月亮之上') print('庐州月') print('人间') 循环如何终止?--3种 改变条件. flag…
目录 1.while循环 2.字符串格式化 3.运算符 4.编码初始 1.while循环 while -- 关键字 (死循环) if 条件: 结果 while 条件: 循环体 while True: #真 执行 print("A") print("B") print("C") print("D") print("E") print("F") print("G") wh…
day02 while--关键字(死循环) 格式:while 条件: ​ 循环体 print(1) while True: print("痒") print("鸡你太美") print("卡路里") print("好运来") print("小三") print("小白脸") print("趁早") print("过火") print(2) falg…
列表推导式 列表推导式提供了从列表.元组创建列表的简单途径.语法: [表达式 for语句 if语句] 创建并返回一个列表.if语句可选. 示例: list1=[1,2,3,4] #使用元组也行 list2=[x*2 for x in list1] print(list2) #[2, 4, 6, 8] list3=[x*2+1 for x in list1] print(list3) #[3, 5, 7, 9] list1=[1,2,3,4] list2=[x*2 for x in list1 i…