For instance, we have:
word = \'Some Random Word\' print \'\"\' + word + \'\"\'
is there a better way to print double quotes around a varia
You can try repr
repr
Code:
word = "This is a random text" print repr(word)
Output:
'This is a random text'