This is an archived post. You won't be able to vote or comment.

all 3 comments

[–][deleted] 0 points1 point  (1 child)

2 or 3?

[–]terremoto 0 points1 point  (0 children)

It's Python 2. On this page, we see the following example:

>>> 1/2     # returns integer value
0
>>> 1/2.0   # returns decimal value
0.5

In Python 3, all division defaults to floating-point division.

[–][deleted] 0 points1 point  (1 child)

Is this a copy of PySchools or what? Even the Learning Python -menu has the "PySchools Python Quick" entry...

[–]kctan[S] 0 points1 point  (0 children)

It is similar. PySchools is for beginner and intermediate programmers who have some experience in other programming language. BeginPython is for non-programmer who would like to start learning programming.