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

doraemon的python之旅 整型、布尔值和字符串1

时间:2019-06-24 00:15:55      阅读:104      评论:0      收藏:0      [点我收藏+]

标签:inpu   布尔   bre   break   content   字符   put   size   and   

运算补充

1.in  和 not in #判断某个东西是否在里面

content = input"请输入内容:"

if "sex" in content:

  print("包含敏感字符")

while True:

  content = input"请输入内容:"

  if "sex" in content:

    print("包含敏感字符")

  else:

  print(content)

  break

2.优先级

not 2>1

解读: not 2       >1    #错误

      not     2>1       #正确     not and or  是所有运算符号里最低级的

doraemon的python之旅 整型、布尔值和字符串1

标签:inpu   布尔   bre   break   content   字符   put   size   and   

原文地址:https://www.cnblogs.com/doraemon548542/p/11067145.html

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