str function coerces data into a string : str « Buildin Function « Python Tutorial






print str(1)                                    
myList = ['A', 'B', 'C'] 
print myList 
myList.append('D') 
print str(myList)                                  

import math
str(math)                               

print str(0xFF)
print str(55.3e2)








13.44.str
13.44.1.str function coerces data into a string
13.44.2.str() and repr()
13.44.3.How to Create and Assign Strings
13.44.4.table of powers using string methods