python print 连续输出变量加字符串

a=1

b=2

print(a,'+',b,'=',a+b)

输出:1+2=3

原文地址:https://www.cnblogs.com/mghhzAnne/p/9323904.html