标签:显示 引号 作用 and while 循环 class not print int
加: +
减: -
乘: *
除: /
取整: //
取余: %
指数运算: **
not: 不 取结果的相反值
and: 且 只有两个条件全部为True(正确)的时候,结果才为True(正确)
or: 或,或者 至少一个条件为True(正确)的时候,结果才为True(正确)
由操作数和运算符组成的一句代码或者语句,表达式可以求值,可以放在=右边,用来给变量赋值
while ‘条件语句‘: # 条件语句为False的时候不执行while语句
break # 遇到我就要结束while循环
continue # 遇到我跳出当前条件判断执行下次循环(while依旧往下执行)
else:
print(‘while执行完毕或者错误‘) # 只有在while执行完毕或者程序出错的时候会执行里面的代码块,break虽然结束while,但并不会触发
end的默认值是换行,也就是说 print(‘hello,word‘) print(‘hello,word‘) 编译后会显示两行
print(‘hello, world‘, end="") print(‘hello, world‘, end="") 会紧密的联系在一起,引号里面可以是其他内容
\n 表示linux、unix的换行
\r\n 表示window的换行
\r 表示mac的换行
标签:显示 引号 作用 and while 循环 class not print int
原文地址:https://www.cnblogs.com/jameBo/p/10252732.html