Introduction Python Tutorial

m = 12
m %= 7
print m
m **= 2
print m
aList = [123, 'xyz']
aList += [45.6e7]
print aList