1. 程式人生 > >摘一些重要的字符串方法(2018.2.21)

摘一些重要的字符串方法(2018.2.21)

格式化輸出 div repl split () sso spl brush replace

#摘一些重要的字符串方法
# print(st.count(‘t‘))
# print(st.startswith(‘d‘))#判斷是否以某個字符串開頭
# print(st.center(50,‘ ‘))#居中
# print(st.find(‘t‘))#查找到一個元素,並將索引值返回
# print(st.format(name=‘bushi‘,age=18))  #格式化輸出的另一種方式
# print(‘My title‘.lower())#全轉化成小寫
# print(‘my title‘.upper())#全轉化成大寫
# print(‘my title title‘.split(‘‘))
# print(‘my title title‘.replace(‘title‘,‘lesson‘))

  

摘一些重要的字符串方法(2018.2.21)