I am new to python want to print double quotes around the value of username, its value is passed in the main. i tried putting \ (backslash) didnt help (using 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
You could always use something like: