python—字符串string

字符串的使用在python等編程語言中極爲廣泛,其使用技巧收錄如下。 # strip去除空格 s = ' abcd efg  ' print(s.strip()) #去除空格 print(s.lstrip()) #去除左邊空格 print(s.rstrip()) #去除右邊空格 print(s) # 字符串連接 print('abc_' + 'defg') s = 'abcdefg' s += '
相關文章
相關標籤/搜索