python字符串与非字符串拼接三种方式

来源:互联网 发布:wpf更新软件 编辑:程序博客网 时间:2024/06/05 11:42


temp = 42
x = 'The temperature is '
print x + str(temp)
print x + `temp`
print x + repr(temp)
原创粉丝点击