標題:
字串處理 (一)
[打印本頁]
作者:
tonyh
時間:
2023-4-22 13:54
標題:
字串處理 (一)
本帖最後由 tonyh 於 2023-4-22 14:29 編輯
str1="123212"
str2="abc"
[attach]15490[/attach]
本帖隱藏的內容需要回復才可以瀏覽
作者:
李沛昂
時間:
2023-4-22 14:31
str1="123212"
str2="abc"
print("2在str1中的位置:",str1.index("2"))
print("str1中有幾個2:",str1.count("2"))
print("str1中包含3:","3" in str1)
print("str1中包含5:","5" in str1)
print("str1中不包含5:","5" not in str1)
str1+=str2
print("串接str1與str2:",str1)
str2*=3
print("將str2的內容複製3次:",str2)
複製代碼
作者:
王捷恩
時間:
2023-4-22 14:37
str1="123212"
str2="abc"
print("position of 2 in string 1:",str1.index('2'))
print("how many 2s are there in string 1:",str1.count('2'))
print("string 1 contains 3:",'3' in str1)
print("string 1 contains 5:",'5' in str1)
print("string 1 does not contain 5",'5' not in str1)
str1+=str2
print("concatenate str1 and str2:",str1)
str2*=3
print("copy the content of string 2 3 times:",str2)
複製代碼
歡迎光臨 種子論壇 | 高雄市資訊培育協會學員討論區 (http://istak.org.tw/seed/)
Powered by Discuz! 7.2