Python100天打卡-Day07 - 字符串和經常使用數據結構

字符串和經常使用數據結構 使用字符串 def main(): str1 = 'hello, world!' # 經過len函數計算字符串的長度 print(len(str1)) # 13 # 得到字符串首字母大寫的拷貝 print(str1.capitalize()) # Hello, world! # 得到字符串變大寫後的拷貝 prin
相關文章
相關標籤/搜索