Programming Tutorials
1.1.1. Letâs run the python interpreter
Code:
Python 2.4.2 (#1, Dec 20 2005, 16:25:40)
[GCC 4.0.0 (Apple Computer, Inc. build 5026)] on darwin
Type "help", "copyright", "credits" or "license" for more information.
>>> 1 + 5
6
>>> 2 * 5
10
>>> 1 / 2
0
Is it the right answer?
Python Tutorial 1 â Introduction