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

Posted doraemon548542

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了doraemon的python之旅 整型布尔值和字符串1相关的知识,希望对你有一定的参考价值。

运算补充

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的主要内容,如果未能解决你的问题,请参考以下文章

doraemon的python form组件(国庆大更新)

doraemon的python csrf校验(国庆大更新)

doraemon的python centos的入门

doraemon的python Flask框架 路由和配置

doraemon的python 进程模块和线程

doraemon的python 守护进程和Process