Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
27 changes: 27 additions & 0 deletions NanthaKumar_Python/README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,27 @@
# Python

## Gist
- Python is an interpreted high-level general-purpose programming language.
- Python's design philosophy emphasizes code readability with its notable use of significant indentation.
- It's language constructs as well as its object-oriented approach aim to help programmers write clear, logical code for small and large-scale projects.
- Python is dynamically-typed and garbage-collected.
- It supports multiple programming paradigms, including structured (particularly, procedural), object-oriented and functional programming.
- Python is often described as a "batteries included" language due to its comprehensive standard library.

| | |
|-|-|
| Designed by | Guido van Rossum |
| First appeared | February 1991 |
| Website | www.python.org |

## Philosophy
Summarized Python's core philosophy,
- Beautiful is better than ugly.
- Explicit is better than implicit.
- Simple is better than complex.
- Complex is better than complicated.
- Readability counts.

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

Author: [NanthaKumar](https://github.com/nknantha)