str function coerces data into a string : Str : Buildin Function PYTHON TUTORIALS


PYTHON TUTORIALS » Buildin Function » Str »

 

str function coerces data into a string


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)



Leave a Comment / Note


 
Verification is used to prevent unwanted posts (spam). .


PYTHON TUTORIALS

 Navioo Buildin Function
» Str