如何在python中连接字符串?
例如:
Section = 'C_type'
将其与Sec_形成字符串:
Sec_
Sec_C_type
最简单的方法是
Section = 'Sec_' + Section
但为了提高效率,请参阅:https : //waymoot.org/home/python_string/