我是 python 新手,想在用户名的值周围打印双引号,它的值在 main 中传递。我试着把\(反斜杠)没有帮助(使用python 3.3)
def Request(method,username,password):
print ('</'+method+ 'Name='+username+ ' ' +'Password='+password+'/>')
expectd output
</test Name="bob" Password="bob@123" />
Request('test','bob','bob@123') calling the function