It looks like you're new here. If you want to get involved, click one of these buttons!
Python 2.6.5 (r265:79063, Apr 16 2010, 13:57:41)
[GCC 4.4.3] on linux2
Type \"help\", \"copyright\", \"credits\" or \"license\" for more information.
>>>
print \"Hello, World!\"
x = 2
print x
x = \"Hello\"
print x
x = \"Hello \"
y = \"World\"
print x + y
2 + 2 =
import math
x = math.pi()
print x
print \"Hi\" #Prints Hi to the screen
help>