Python 5種連線字串的方法

2022-09-18 10:48:23 字數 683 閱讀 5993

python 5種連線字串的方法

talk is cheap, please show me the code.

print('python'

'best') #使用空格

print('python' + 'best') #使用+號

print('python', 'best') #使用,號 注意會有空格

str_list = ['python', 'best'] #使用空字串join

str = ''

print(str.join(str_list))

str_list = ['python', 'best'] #使用空格join

str = ' '

print(str.join(str_list))

print('%s %s' %('python', 'best')) #格式化輸出 這個簡直是湊數的=.=

#結果pythonbest

pythonbest

python best

pythonbest

python best

python best

Python 5種連線字串的方法

python 5種連線字串的方法 talk is cheap,please show me the code.print python best 使用空格 print python best 使用 號 print python best 使用,號 注意會有空格 str list python bes...

JavaScript字串轉數字的5種方法及其陷阱

string 轉換為 number 有很多種方式,我可以想到的有 5 種!parseint num 預設方式 沒有基數 parseint num,10 傳入基數 十位數 parsefloat num 浮點數 number num number 構造器 num 按位非 num 1 除乙個數 num 1...

Python字串連線的5種方法

轉 總結了一下python字串連線的5種方法 1.加號 第一種,有程式設計經驗的人,估計都知道很多語言裡面是用加號連線兩個字串,python裡面也是如此直接用 來連線兩個字串 print python tab 結果 pythontab 2.逗號 第二種比較特殊,使用逗號連線兩個字串,如果兩個字串用 ...