一. 格式化输出现在有以下需求,让用户输入name, age, job,hobby 然后输出如下所示: -----------info of Alex Li----------- Name : Alex Li Age : 22 job : Teacher Hobbie : gril ----------------end----------------- 你怎么实现呢?你会发现,用字符拼接的方式还难实现这种格式的输出,所以一起来学一下新姿势只需要把要打印的格式先准备好, 由于里面的 一些信息是需…
Python 基础 格式化输出 现在需要我们录入我们身边好友的信息,格式如下: ------------ info of Alex Li ---------- Name : Alex Li Age : 22 job : Teacher Hobbie: girl ------------- end ---------------- 我们现在能想到的办法就是用一下方法: name = input('请输入姓名:') age = input('请输入年龄:') job = input('请输入职业:'…
一.题型 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…
格式化输出 '%s %d %.2f' % ('Novak', 33, 1.88) 需要逗号…
一.while循环的基本结构 while 条件: 代码块(循环体) else: 当上面的条件为假. 才会执行 执行顺序:判断条件是否为真. 如果真. 执行循环体. 然后再次判断条件....直到循环条件为假. 程序退出 二.break与continue 1.break: break是用来终止当前本层循环 2.continue: continue是停止当前本次循环,继续执行下次循环 三.格式化输出及运算符 1.格式化输出 %s 占位字符串 %d 占位数字 2. 运算符 and: 并且, 两端同时为真…
本节学习Python的格式化输出,文件操作以及json的简单用法 1.格式化输出 将非字符串类型转换成字符串,可以使用函数:str() 或者repr() ,(这两个函数的区别目前我还没搞懂,求解答) >>> str([1,2,3,4]) '[1, 2, 3, 4]' >>> repr([1,2,3,4]) '[1, 2, 3, 4]' >>> str(10) ' >>> repr(10) ' 可以使用str.ljust() .str.…
Python的格式化输出有两种: 一.类似于C语言的printf的方法 二.类似于C#的方法…
python print格式化输出. 1. 打印字符串 print ("His name is %s"%("Aviad")) 效果: 2.打印整数 print ("He is %d years old"%(25)) 效果: 3.打印浮点数 print ("His height is %f m"%(1.83)) 效果: 4.打印浮点数(指定保留小数点位数) print ("His height is %.2f m&qu…
第二天课程整理 while 循环 why : while ' 循环' 的意思 what : while 无限循环 how : 1.基本结构 while + 条件 循环的代码 初识循环 while true: print('狼的诱惑')                先判断 条件 print('我们不一样')     如果是true  进行循环 print('月亮之上') 循环到底部,再次判断条件 条件成立继续循环 print('庐州月')                   print('人间'…
while循环 break 终止当前循环 count = 1 while count < 3: print(count) count += 1 break # while循环中一旦代码执行到break,就代表当前循环结束,break下面的代码不会再被执行 print("123") # 此段代码中,print不会被执行 continue 跳过当次循环,继续下次循环 count = 0 while count < 9: count += 1 if count == 5: con…