字符串的子序列需要注意的问题

1 name = "Python"
2 if "P" in name: # 此处区分大小写
3     print("P is in!") # P 是 name 的子字符串,子序列,必须连续的字符串切片,隔开的不行。
4 else:
5     print("is not in")

 

posted @ 2018-02-24 16:52  千行路  阅读(266)  评论(0编辑  收藏  举报