Python
- Python Design idea
- one language independent of solution type
- Things to Know
- Zen of python
- New features in python are introduced as PEP (Python enhancement Proposal)
- Python has many distributions
- Cpython: One which we use
- IronPython
- Jython
-
Two types of languages based on types
- Static typed languages
- Dynamic typed languages
-
Python:
- Dynamically typed language
- Structure to a program to look decent (indentation)
- Organizes the code in
- Packages
- Modules
- Blocks
-
Lets write our first python program
- create a file called as
hello.py - Add the following lines
print("hello") - Cd into folder from terminal
- create a file called as
-
REPL (Read evaluate Print Loop)
