13 lines
143 B
Python
Raw Normal View History

2014-05-03 22:10:08 -03:00
print "hello python!"
print 4 + 4
import math
print math.sqrt(16)
print math.pow(3, 2)
print math.cos(0)
2014-05-04 07:11:25 -03:00
# exercises
print math.pow(23, 5)