1. 程式人生 > >Python學習-字串查詢和替換方法

Python學習-字串查詢和替換方法

#coding:utf-8
"""
字串查詢和替換
startswith
endswith
find
replace

"""


s='hello world'

# 1。 是否開始bool
print s.startswith('h')

# 2。 是否結尾bool
print s.endswith('ld')

# 3。 查詢,找不到不報錯,而是-1
print s.find('fuc')
print s.find('abc')

# 4。 替換,不會修改原字串
s1=s.replace('world','python')
print s1
print s