I have a list I want to pretty print that contains empty lists as well as lists with string members. the problem is that lists that contains strings are printed with double quotes:
>>>str(['a'])
"['a']"
But an empty list is printed with single quotes:
>>> str([])
'[]'
Is there a way to always force printing string with double quotes ?