PYTHON
Introduction:
1. High level programming language
2. Simple and readable syntax
3. Very less code,improves readability
4. Automatically detects variable types at runtime
5. Support object oriented programming ,functional programming,procedural
programming.
6. Dynamically typed(don’t need to specify the data type of a variable) and
automatic garbage collection(Garbage = unused memory
Garbage collection = cleaning unused memory
Ex: x=10
X=20
Now 10 no longer exist, it is automatically removed
Print() function
Used to display text on the screen
Ex:print(“srikipro”)
Srikipro is a string ,enclosed in a double quotes(or single)