程式與日常
Python檢查字串中是否包含字串的方法如下。
使用in來檢查前面的字串是否在後面的字串中。
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
張貼留言
沒有留言:
張貼留言