Python Forum
Understanding Python terminology
Thread Rating:
  • 0 Vote(s) - 0 Average
  • 1
  • 2
  • 3
  • 4
  • 5
Understanding Python terminology
#1
I want to learn Py. I have downloaded and installed Python 3.6 and prefer using an IDE.
However I am having big trouble making sense of all the various terms used in the documentation as if every lay person understands them out of the box.

1. I downloaded Eric and Komode IDEs but could not get them to run for some simple hitches like PyQT5 is missing - how was Python 3.6 installed without PyQT5 and what is PyQT5?
- what is a Python interpreter? Is it different from the Puthin command line installation?
- what are Python packages? Are they like themes?
- what are Python scripts? Are they program code?
- what are Python environments? Are they the various 'versions' installed on one device?

2. I signed up for a Python course and downloaded and installed Atom editor, but cannot get it to detect my Python install. How can I do that?

3. I am setting up my Visual Studio 2015 to handle Python. I do not expect any hitches but if I do I will have to come here for more help.

Any and all help will be appreciated.
Reply
#2
Quote: how was Python 3.6 installed without PyQT5 and what is PyQT5?
PyQT5 is a package. It was not written bu the Python.org group.
It is a graphics package.

install using:
pip3 uninstall pyqt5
Reply
#3
Python is an interpreted language. A Python program can't run by itself, it needs the interpreter to run it. The command line interface uses the interpreter, but they are not the same thing. A package is a collection of programs that work together and are recognized as a single module by Python. A script is basically a single-file Python program. Scripts are also recognized as modules by Python. A module is code you can import into another program. Note that Python only recognizes modules in folders you told it to look for them (sys.path).

I'm not familiar with the term 'environment' for Python, except through third party systems like Anaconda. Setting up and IDE for Python is going to depend on the IDE. I would search for 'Atom Python' if you are having trouble setting up Atom.
Craig "Ichabod" O'Brien - xenomind.com
I wish you happiness.
Recommended Tutorials: BBCode, functions, classes, text adventures
Reply
#4
Thanks to all.
Reply


Possibly Related Threads…
Thread Author Replies Views Last Post
  Understanding venv; How do I ensure my python script uses the environment every time? Calab 1 2,295 May-10-2023, 02:13 PM
Last Post: Calab
  New to python/coding Need help on Understanding why this code isn't working. Thanks! mat3372 8 1,764 May-09-2023, 08:47 AM
Last Post: buran
  Understanding Python classes PythonNewbee 3 1,195 Nov-10-2022, 11:07 PM
Last Post: deanhystad
  Understanding Python super() for classes OmegaRed94 1 1,841 Jun-09-2021, 09:02 AM
Last Post: buran
  Better Understanding Of Object Orientation In Python JoeDainton123 3 2,488 Aug-30-2020, 02:49 PM
Last Post: deanhystad
  Understanding Python's Import Engine MysticaL 1 2,176 Feb-07-2020, 11:26 PM
Last Post: snippsat
  Help with understanding a python package pyhill00 4 3,058 Mar-21-2019, 12:42 AM
Last Post: Larz60+
  Understanding if Statements in Python Kathleen 1 2,440 Mar-05-2019, 07:55 PM
Last Post: Yoriz
  Understanding Scoping in Python yksingh1097 5 3,859 Aug-06-2018, 07:42 PM
Last Post: nilamo
  Python Iteration Understanding giteepag 3 2,724 Jul-26-2018, 02:23 PM
Last Post: perfringo

Forum Jump:

User Panel Messages

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