I have a question, is there a way to "force" repr()
to create always single quotes around a string?
This happens when I only use repr()
print repr("test")
'test'
print repr("test'")
"test'"
print repr("test\"")
'test"'
print repr("test'\"")
'test\'"'
so the last one actually does, what I want, but I don't want to add always \\"
to get the single quotes.
Edit: I am not going to mark an answer as accepted since, as pointed out by @martijn-pieters, I was using repr()
for purposes it is not intended for.
I needed to do something similar once, except I wanted it to always "prefer" to use double quotes — meaning use them unless there were more of them in string than single quotes (in order to minimize the number of them that would require escaping).
The way I did this was to subclass the built-in
str
class and override its__repr__()
method. You could probably easily reverse the logic in it to do the opposite (as well as force the character used to always be one or the other).FWIW, here's the code:
Output: