OSSU-computer-science/archives/01-introduction-to-computer-science-and-programming/hello.py

9 lines
107 B
Python
Raw Normal View History

2014-05-03 19:10:08 -06:00
print "hello python!"
print 4 + 4
import math
print math.sqrt(16)
print math.pow(3, 2)
print math.cos(0)