标签: python python-3.x
我现在正在做一个家庭作业而且我被困在某事上。所以:
a = "32" for j in a: print(j, sep=" + ", end=" ")
此代码输出:
3 2
但我希望它打印
3 + 2
我哪里做错了?