What is python?
What is python?
Python is a popular programming language. Python is an interpreted, object-oriented, high-level programming language with dynamic semantics. Created by Guido van Rossum and first released in 1991, It's high-level built-in data structures, Multi-paradigm functional, imperative, object-oriented, reflectivePython is dynamically typed and garbage-collected. It supports multiple programming paradigms, including procedural, object-oriented, and functional programming. Python is often described as a "batteries included" language due to its comprehensive standard library.
Filename extensions: .py, .pyc, .pyd, .pyo , .pyw, .pyz
Python Programming used for:
- web development (server-side)
- software development
- mathematics
- system scripting, etc.
Python Data Type:
Data Type | Example |
---|---|
Integers | 10,20,30 |
Floats | 3.14159 |
Boolean | True, False |
Strings | "Hello World" |
Lists | ["Text",10,True] |
Tuples | ("Text",10,False) |
Dictionaries | {"Name": "Akramul"} |
No comments