To be clear, I do not want to print double quotes themselves, I want python to print out my strings in double quotes, instead of single quotes?
for example, if i run the following code in python-
print(["this is a string!", "this is another string!"])
the result will be
['this is a string!', 'this is another string!']
i want the output to be in double quotes aswell. How do i do this?