我尝试使用两个项目。一个是name
,另一个是id
。我想将项目包装在double quotes
中并与:
连接。但是,我无法。谢谢你的帮助。
到目前为止,我已经尝试过:
name = 'Mark'
idnum = 2134
print(name + " : " + str(idnum))
我有的输出:
Mark : 2134
我想要的输出:
"Mark" : "2134" ##mind the quotes
最佳答案
name = 'Mark'
idnum = 2134
print('"{0}" : "{1}"'.format(name, str(idnum)))
#"Mark" : "2134"
关于python - 无法将输出包裹在引号中,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/50037194/