- Get link
- Other Apps
Posted by
Naveen M K
on
- Get link
- Other Apps
Hello, I am Naveen.
Python was conceived in the late 1980s as a successor to the ABC language. Python 2.0, released 2000, introduced features like list comprehensions and a garbage collection system capable of collecting reference cycles. Python 3.0, released 2008, was a major revision of the language that is not completely backwards-compatible, and much Python 2 code does not run unmodified on Python 3. Due to concern about the amount of code written for Python 2, support for Python 2.7 (the last release in the 2.x series) was extended to 2020. Language developer Guido van Rossum shouldered sole responsibility for the project until July 2018 but now shares his leadership as a member of a five-person steering council.
What is Python?
Python is an interpreted, high-level, general-purpose programming language. Created by Guido van Rossum and first released in 1991, Python's design philosophy emphasizes code readability with its notable use of significant whitespace. Its language constructs and object-oriented approach aim to help programmers write clear, logical code for small and large-scale projects.Python was conceived in the late 1980s as a successor to the ABC language. Python 2.0, released 2000, introduced features like list comprehensions and a garbage collection system capable of collecting reference cycles. Python 3.0, released 2008, was a major revision of the language that is not completely backwards-compatible, and much Python 2 code does not run unmodified on Python 3. Due to concern about the amount of code written for Python 2, support for Python 2.7 (the last release in the 2.x series) was extended to 2020. Language developer Guido van Rossum shouldered sole responsibility for the project until July 2018 but now shares his leadership as a member of a five-person steering council.
Source Wikipedia.
Python is an interpreted language that is all the commands you write are interpreted and executed one by one.
Python for beginners
Here, we would use spyder IDE in Anaconda python.
We can work by two types in Python.
Default saving extension for python is ".py".
Check out this cheat sheet made by Kevin
http://r.syrusdark.website/python-cs
Pluses of Python
- Easy to use OO language
- Expressive language
- Interpreted language
- It's completeness
- Cross-platform language
- Free and open source
- Variety of usage or application
Disadvantages of Python
- Not the fastest language
- Having fewer libraries
- Not strong on type binding
- Not easily convertible
Python is an interpreted language that is all the commands you write are interpreted and executed one by one.
Python for beginners
Working in Python
- The default installation is available from "www.python.org" and is called "CPython installation"
- Anaconda Python distribution is one such highly recommended distribution with many libraries.
Anaconda Python - There are also Other IDE which is available
Here, we would use spyder IDE in Anaconda python.
![]() |
Spyder IDE |
We can work by two types in Python.
Interactive mode
Interactive mode means in we type one command the Python execute shell command there and gives output.
Script mode
Script mode executes all the command and can get all output lines together.Shortcuts (basic)
F5 | Run ( Only in Script Mode.)Default saving extension for python is ".py".
Note
Python saves only in script mode.Check out this cheat sheet made by Kevin
http://r.syrusdark.website/python-cs
Comments
Post a Comment