AdSense

網頁

2021/2/26

Python 檢查字串中是否包含字串 check if string contains substring

Python檢查字串中是否包含字串的方法如下。

使用in來檢查前面的字串是否在後面的字串中。

str = 'hello world'

print('hello' in str)  # True
print('HELLO' in str)  # False

print('world' not in str)  # False
print('WORLD' not in str)  # True

沒有留言:

AdSense