Python Forum
New to Python - What are the basic concepts, uses, and fundamentals? - Printable Version

+- Python Forum (https://python-forum.io)
+-- Forum: General (https://python-forum.io/forum-1.html)
+--- Forum: News and Discussions (https://python-forum.io/forum-31.html)
+--- Thread: New to Python - What are the basic concepts, uses, and fundamentals? (/thread-21616.html)



New to Python - What are the basic concepts, uses, and fundamentals? - JohnWithGCSRecruitment - Oct-07-2019

I am trying to get a general understanding of Python. Can anyone give me a crash course of the basics? Not necessarily the specifics, but mainly the concepts (i.e. what it is, what it does).


RE: New to Python - What are the basic concepts, uses, and fundamentals? - buran - Oct-07-2019

https://en.wikipedia.org/wiki/Python_(programming_language)


RE: New to Python - What are the basic concepts, uses, and fundamentals? - Skaperen - Oct-08-2019

(Oct-07-2019, 04:29 PM)JohnWithGCSRecruitment Wrote: I am trying to get a general understanding of Python. Can anyone give me a crash course of the basics? Not necessarily the specifics, but mainly the concepts (i.e. what it is, what it does).

it is the combination of good features that many other languages have, but not all together, that is a great benefit to the software ecology.

1. an easy to work with namespace-oriented dynamic data model that includes simple basic data types and easy to expand container types.

2. simple class/object programming model.

3. a syntax that is easy to write that helps make your code easier to read.

4. a "batteries included" library that gets you started in just about every direction and can be expanded beyond belief by thousands of free packages.

note: "easy" applies to both beginners learning Python and experienced coders wanting to be sure their code is high quality

Python has consistently had the fastest growing user base for the past several years.


RE: New to Python - What are the basic concepts, uses, and fundamentals? - prih_yah - Oct-10-2019

Python is a very easy object oriented language in comparison to other OOP languages like java, C++ etc. It can be used in app development and web development also. It also has a lot of framework and libraries which makes it very easy for developer as well as user to understand.
Python Course Description-
  1. Needs of python to individuals
  1. Structure of python
  1. Steps required for execution
  1. Interactive shells
  1. Executable or draft files
  1. Memory Management or Garbage Collection
  1. Object creation or deletion
  1. Data types or how to operate them
  1. Modules and Packages
B
  1. ound or unbound methods of python
  1. References and exercises



RE: New to Python - What are the basic concepts, uses, and fundamentals? - Aurthor_King_of_the_Brittons - Oct-10-2019

Python Tutorial

This may be more detail than you are looking for, but it's a pretty good resource I have used in the past.