2014-03-05 45 views
3

Python中的哪個字符串實現更pythonic?什麼是python更python?

string += "<%s>%s</%s>%s" % (a, b, c, d) 

string += '<' + a + '>' + b + '<'/' + c + '>' + d 

回答

8

字符串格式化是更快和更可讀的,總是。

考慮使用命名參數,以及最近的str.format() method

"<{tag}>{value}</{tag}>{tail}".format(tag='foo', value='bar', tail='spam') 
+0

該函數str.format()對我的腳本看起來不錯。謝謝 – dusan