Python Forum
Versions

This is a dynamic loadout of differences in python versions 2 and 3.

A lot of modules were just simply renamed in python3.x or moved to a different location. This means you can use a python2.x tutorial using python3.x interpreter. But you need to know where to look for the same module. This will help you find that module.

If you just input the word print, you will get an output that shows differences of print and how to use it in both versions. One for example would be print x, y which is python2.x where print is a statement, and the next is the same in python3.x print(x,y) where print is a function.

User Panel Messages

Announcements
Announcement #1 8/1/2020
Announcement #2 8/2/2020
Announcement #3 8/6/2020