diff --git a/archives/01-introduction-to-computer-science-and-programming/hello.py b/archives/01-introduction-to-computer-science-and-programming/hello.py new file mode 100644 index 0000000..88c358f --- /dev/null +++ b/archives/01-introduction-to-computer-science-and-programming/hello.py @@ -0,0 +1,8 @@ +print "hello python!" + +print 4 + 4 + +import math +print math.sqrt(16) +print math.pow(3, 2) +print math.cos(0)