It's a little hard to explain what I want to do because I don't know much python programming terminology.
Basically I want to be able to do something like this this:
var = list("blah blah")
print(str(var))
And get this:
Output:
list("blah blah")
And not this:
Output:
['b', 'l', 'a', 'h', ' ', 'b', 'l', 'a', 'h']
Or do something like this:
a = str(4+(6*3)) + " Test"
print(str(a))
And get this:
Output:
str(4+(6*3)) + " Test"
And not this:
Output:
22 Test