寫一個程式來檢查給定的鍵是否為標題。
istitle()- 檢查每個單字的第一個字母是否大寫,單字中的所有其他字母都小寫。
txt = 'Rose Is A Beautiful Flower' if txt[0]>='a' and txt[0]<='z': print("No Title is there") else: i = 1 while i<len(txt)-1: if txt[i]==' ': if txt[i+1]>='A' and txt[i+1]<='Z': pass else: print("No Title is there") break i+=1 else: print("Title is there")
Title is there
寫一個程序,用一個單字取代另一個單字。
replace()-用另一個子字串取代字串中出現的子字串。
txt = "I like bananas" already = "bananas" new = "apples" l = len(already) # l = 7 start = 0 end = l while end<=len(txt): if txt[start:end] == 'bananas': txt = txt[:start] + new start+=1 end+=1 else: print(txt)
I like apples
在 Python 中,一切皆物件。
每個物件都可以創建不同的記憶體空間。
字串是不可變的(不可更改)。
相同的物件可以引用相同的記憶體。
country1 = 'India' country2 = 'India' country3 = 'India' country4 = 'India' print(id(country1)) print(id(country2)) print(id(country3)) print(id(country4)) country1 = "Singapore" print(id(country1))
135098294846640 135098294846640 135098294846640 135098294846640 135098292962352
如果我們嘗試編輯現有字串,它不會改變。相反,將創建一個新的記憶體來儲存新值。
rfind() 與 rindex() 之間的差異:
這兩種方法都會搜尋最後一次出現的指定子字串,但當子字串不存在時,它們的行為有所不同。
txt = "Mi casa, su casa." x = txt.rfind("casa") print(x) x = txt.rindex("casa") print(x)
12 12
txt = "Mi casa, su casa." x = txt.rfind("basa") print(x) x = txt.rindex("basa") print(x)
-1 ValueError: substring not found
rfind()-如果找不到:回傳-1
rindex()-如果找不到:引發 ValueError
寫一個程式來檢查給定的金鑰是否可用。
(rfind() 或 rindex())
txt = "Python is my favourite language" key = 'myy' l = len(key) start = 0 end = l while end<=len(txt): if txt[start:end] == key: print(start) break start += 1 end += 1 else: print('-1 or ValueError')
-1 or ValueError
寫一個程式來分割給定的文字。
split()- 依照指定的分隔符號將字串分成子字串清單。
txt = "Today is Wednesday" word = '' start = 0 i = 0 while i<len(txt): if txt[i]==' ': print(txt[start:i]) start = i+1 elif i == len(txt)-1: print(txt[start:i+1]) i+=1
Today is Wednesday
以上是日期字串函數的詳細內容。更多資訊請關注PHP中文網其他相關文章!