3
Python中的哪個字符串實現更pythonic?什麼是python更python?
string += "<%s>%s</%s>%s" % (a, b, c, d)
或
string += '<' + a + '>' + b + '<'/' + c + '>' + d
Python中的哪個字符串實現更pythonic?什麼是python更python?
string += "<%s>%s</%s>%s" % (a, b, c, d)
或
string += '<' + a + '>' + b + '<'/' + c + '>' + d
字符串格式化是更快和更可讀的,總是。
考慮使用命名參數,以及最近的str.format()
method:
"<{tag}>{value}</{tag}>{tail}".format(tag='foo', value='bar', tail='spam')
該函數str.format()對我的腳本看起來不錯。謝謝 – dusan