我是python的新手,想打印用戶名值的雙引號,它的值在main中傳遞。我試圖把\(反斜槓)沒有幫助(使用Python 3.3)在python中打印一個變量的雙引號
def Request(method,username,password):
print ('</'+method+ 'Name='+username+ ' ' +'Password='+password+'/>')
expectd output
</test Name="bob" Password="[email protected]" />
Request('test','bob','[email protected]') calling the function
出於興趣,你在哪裏嘗試把'\「's當它不工作?像'print(」這是一個\「quoted \」輸出「)'應該工作正常。 –