I guess that these programs would offer up support eventually. Find a brand-new GUI or graphics module that is supported in 3.x This gives you the opportunity to learn how to use that module without wasting time.
SgtMe
Nearly a Posting Virtuoso
1,205 posts since Oct 2009
Reputation Points: 68
Solved Threads: 85
Just have both installed as most of us have.
Wxpyhon is a excellent GUI toolkit use python 2.x if you need to use that.
This topic has been upp several times,python is python dont get hang up in python 2.x or 3.x.
If you are learning python 3.,you are learing python 2.x and visa versa.
Just get ourself uppdatet what the differences are.
snippsat
Practically a Posting Shark
808 posts since Aug 2008
Reputation Points: 353
Solved Threads: 294
snippsat
Practically a Posting Shark
808 posts since Aug 2008
Reputation Points: 353
Solved Threads: 294
And to keep coding Python 3 like, you can use in beginning of Python 2.7 programs:
from __future__ import print_function, division, generators
try:
input = raw_input # nobody use input, so lets overwrite it with Python3 style raw_input
except:
pass
Then mostly your code runs both Python 2 and 3 (naming of modules being main issue and strings being unicode in Python 3).
pyTony
pyMod
5,359 posts since Apr 2010
Reputation Points: 782
Solved Threads: 852
PyQt is compitable with python 3,and of course build in Tkinter.
http://www.riverbankcomputing.co.uk/news
For beginner there is a massive amount of quality book/tutorials/forum help that are almost all inn pyhon 2.x.
Is not a smart ting to overlook all that info because you look only for for python 3 stuff.
snippsat
Practically a Posting Shark
808 posts since Aug 2008
Reputation Points: 353
Solved Threads: 294