[b]字符串格式化[/b]
[b]join[/b]
[b]字符串替换[/b]
print “%s%s” %(“hello”,"world")
[b]join[/b]
>>> a = ["a","b","c"]
>>> "-".join(a)
'a-b-c'
[b]字符串替换[/b]