python 字符串拼接的五種常見方式

python 字符串拼接方式有不少種,參考了網上的一些方法,這裏記錄經常使用的五種方式 參考 "+"方式 a='字符串' b='拼接' print(a+b) 運行結果 html 模式串 "%s"方式 print('%s%s' %(a,b)) 運行結果 python "format"方法(這裏介紹了三種方式) print("{}{}".format(a,b)) print("{0}{1}".for
相關文章
相關標籤/搜索