Answers:
连接字符串的更有效方法是:
加入():
效率很高,但有点难读。
>>> Section = 'C_type'
>>> new_str = ''.join(['Sec_', Section]) # inserting a list of strings
>>> print new_str
>>> 'Sec_C_type'
字符串格式:
易于阅读,在大多数情况下比“ +”级联更快
>>> Section = 'C_type'
>>> print 'Sec_%s' % Section
>>> 'Sec_C_type'
要在python中连接字符串,请使用“ +”号