字符串与字符 in --- not in

Posted jiaqing767418611

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了字符串与字符 in --- not in相关的知识,希望对你有一定的参考价值。

in与not in是判断一个东西是否存在另一个东西内:

in的用法:

name="忍者神龟"                                                                         "忍者神龟":为字符串

if "忍者" in name:                                                                           忍:为字符串里的字符

  print("是子字符串")                                                                "忍者":为子字符串       (子字符串里的字符必须是连着的)

else:                                                                                            "忍龟":则不是子字符串

  print("不是")

not in 的用法:

name="忍者神龟"

if "忍龟" not in name:

  print("不是子字符串")

else:

print("是子字符串")

 

以上是关于字符串与字符 in --- not in的主要内容,如果未能解决你的问题,请参考以下文章

FIND_IN_SET

MySQL find_in_set 与多个搜索字符串

计算最长的字符串长度

find_in_set

Python字符串填充与清除

mysql find_in_set 对性能有影响吗