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)