Python (main.py):
1 2 3 4 5 6 7 8 9 10 11 12 13 | # -*- coding: utf-8 -*- english = "-*-QQBoxy Say Hello CodeBoxy-*-" print (english[: 3 ]) #由最前面印到第3個字 print (english[ 3 : - 3 ]) #由第3個字印到倒數第3個字 print (english[ - 3 :]) #由倒數第3個字印到最後 print (english.strip( "-*" )) #清除字串前後字元 print (english.strip( "-*" ).lower()) #轉成小寫 print (english.strip( "-*" ).upper()) #轉成大寫 print (english.strip( "-*" ).replace( "Boxy" , "Box" , 1 )) #取代1次字串 print (english.strip( "-*" ).split( " " )) #陣列切割 print ( len (english)) #字串長度 print (english.find( "Boxy" , 3 , 27 )) #位置3到位置27字串第一次出現的位置 print (english.count( "Boxy" , 0 , 27 )) #位置0到位置27字串出現的次數 |
Python3常用字串語法整理。
沒有留言:
張貼留言