Python Forum
Why is Python so hard to maintain
Thread Rating:
  • 0 Vote(s) - 0 Average
  • 1
  • 2
  • 3
  • 4
  • 5
Why is Python so hard to maintain
#5
The only reason you should "need" older versions is because 1) your system requires it (AKA older linux distros use python2.x) and 2) if your using a program that didnt update their code requiring you to have multiple versions.

Regarding #2 i would consider it apart of the programmers fault for not building an executable with the required python version. They should have built it in mind of computer-illiterate folks use their programs. However it is common practice for python programmers to know how to use multiple versions of python, and invke them with whatever they use to type the code (IDE or editor). If your the first i would just aks the programmer

Switching between versions is only as hard as you make it. For me its as simple as invoking the correct python interpreter by modifying the the number given in the terminal
metulburr@ubuntu:~$ python2
Python 2.7.12 (default, Nov 12 2018, 14:36:49) 
[GCC 5.4.0 20160609] on linux2
Type "help", "copyright", "credits" or "license" for more information.
>>> exit()
metulburr@ubuntu:~$ python3
Python 3.6.1 (default, Jun  8 2017, 06:36:16) 
[GCC 5.4.0 20160609] on linux
Type "help", "copyright", "credits" or "license" for more information.
>>> exit()
metulburr@ubuntu:~$ python3.7
Python 3.7.3 (default, Mar 26 2019, 01:59:45) 
[GCC 5.4.0 20160609] on linux
Type "help", "copyright", "credits" or "license" for more information.
All languages evolve. Its not just Python. Java 11 and 12. C++98, C++11 and c++14. The only major incompatibility is in the differences between python3.x and python2.x. And that was to fix a lot of issues. The change happened over a decade ago at this point. 2.x is considered obsolete now.
Recommended Tutorials:
Reply


Messages In This Thread
Why is Python so hard to maintain - by RMJFlack - Aug-15-2019, 02:33 PM
RE: Why is Python so hard to maintain - by wavic - Aug-15-2019, 02:57 PM
RE: Why is Python so hard to maintain - by RMJFlack - Aug-15-2019, 03:08 PM
RE: Why is Python so hard to maintain - by metulburr - Aug-15-2019, 03:10 PM
RE: Why is Python so hard to maintain - by RMJFlack - Aug-15-2019, 03:42 PM
RE: Why is Python so hard to maintain - by snippsat - Aug-15-2019, 04:09 PM
RE: Why is Python so hard to maintain - by RMJFlack - Aug-15-2019, 04:16 PM
RE: Why is Python so hard to maintain - by buran - Aug-15-2019, 05:01 PM
RE: Why is Python so hard to maintain - by RMJFlack - Aug-15-2019, 05:48 PM
RE: Why is Python so hard to maintain - by buran - Aug-15-2019, 07:04 PM
RE: Why is Python so hard to maintain - by RMJFlack - Aug-15-2019, 10:30 PM

Possibly Related Threads…
Thread Author Replies Views Last Post
  How to Hire a Python Programmer? It's hard because I don't know pythonforumuser 1 1,703 Feb-10-2020, 12:02 PM
Last Post: metulburr
  how hard to translate this to python? Skaperen 4 4,035 Oct-18-2017, 07:37 AM
Last Post: buran
  Should Learn Python The Hard Way's be in the forums list of books Yoriz 16 14,581 Nov-09-2016, 05:47 PM
Last Post: micseydel

Forum Jump:

User Panel Messages

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