str()
str
To convert any value x to a string, use this general form:
x
str(x)
For example:
>>> str(17) '17' >>> str({'boy': 'Relmond', 'girl': 'Wirdley'}) "{'boy': 'Relmond', 'girl': 'Wirdley'}"