Week0 Functions Indoor Voice 題目描述: 將輸入的字元串轉化為全部小寫的字元串; 思路: lower():轉換字元串中所有大寫字元為小寫。 題解: print(input().lower()) Playback Speed 題目描述: 將輸入的字元串中間空格部分替換為“. ...
Week0 Functions
Indoor Voice
題目描述:
將輸入的字元串轉化為全部小寫的字元串;
思路:
lower():轉換字元串中所有大寫字元為小寫。
題解:
print(input().lower())
Playback Speed
題目描述:
將輸入的字元串中間空格部分替換為“...”;
思路:
1.split() :通過指定分隔符對字元串進行切片,如果第二個參數 num 有指定值,則分割為 num+1 個子字元串。
str = "this is string example....wow!!!" print (str.split( )) # 以空格為分隔符 print (str.split('i',1)) # 以 i 為分隔符 print (str.split('w')) # 以 w 為分隔符
['this', 'is', 'string', 'example....wow!!!'] ['th', 's is string example....wow!!!'] ['this is string example....', 'o', '!!!']
2.join() :用於將序列中的元素以指定的字元連接生成一個新的字元串
symbol = "-"; seq = ("a", "b", "c"); # 字元串序列 print symbol.join( seq );
a-b-c
題解:
print("...".join(input().split()))
Making Faces
題目描述:
將輸入字元串中”:)“替換為”