我有这段代码:
reclass=""
for x in xrange(1,32):
if x <=30:
reclass+="remap"+str(x)+"+"
else:
reclass+="remap"+str(x)
print reclass
打印哪些:
remap1+remap2+remap3+remap4+...
但我想要打印字符串:
'remap1'+'remap2'+'remap3'+...
我如何做到这一点?
答案 0 :(得分:6)
要打印单引号,请在字符串中添加单引号。格式化字符串的一种简洁方法是使用Width
而不是连接多个字符串。
50
TextBlock
更好的解决方案是使用Text
,这可以避免在生成最终输出的过程中使用creatintg中间字符串。
50%