小册名称:Python合辑4-130个字符串操作示例
连接固定字符串和变量
variable = 'Hello'print('This is the Test File ' + variable)variable = '10'print('This is the Test File ' + str(variable))
variable = 'Hello'
print('This is the Test File ' + variable)
variable = '10'
print('This is the Test File ' + str(variable))
Output:
This is the Test File HelloThis is the Test File 10
This is the Test File Hello
This is the Test File 10