PYTHON :
Day 1:
Agenda :
- Introduction to python
- Python Features
- Python Comparison with other language.
- History of Python
- Python Applications
- Top companies used python
Introduction to Python:
- Python is high level object oriented scripting language.
- Python is open source language.
- Platform Independent
Python Features :
- Python is Interpreted
- Python is Interactive
- Python is Object-Oriented(classes, objects, polymorphisom, ecapsulation etc...)
- Python is a Beginner's Language
- Python Comparison with other languages :
History :
- The implementation of Python was started in the December 1989 by Guido Van Rossum at CWI in Netherland.
- In February 1991, van Rossum published the code(labeled version 0.9.0).
- In 1994, Python 1.0 was released with new features like : lambda, map , filter, and reduce.
- Python 2.0 added new features like: list comprehensions, garbage collection system .
- On December 3, 2008 , Python 3.0 (also called "Py3K") was released.
- Python is influenced by:
---- Modula -3
Python used in Various applications :
- Web Development
- Testing(ex; Hadoop, Selium etc...)
- Data Analysis
- Data Science
- Artificial Intelligence.
- Machine Learning
Top Companies Using the Python:
- Dropbox
- Yahoo!
- NASA
- IBM
- Youtube
- Mozilla
Day 2:
Agenda :
- How to install Python On Windows
- Different ways to Run Python code
Download and Install python on windows:
Python official website :
https://www.python.org/downloads/- every python files must save with the ".py" extension.
print("Hello World")
output:
Hello World
Day 3:
Agenda :
- Variables
- Datatypes
- Concatenation
Variables:
- A variable is nothing but a reserved memory location to store values.
- Variables are used to store the data.
- Memory allocated when the values are stored in variables.
- Every variable must have some type.
Here a is the variable and 10 is the value .i.e; this value 10 is stored in the variable a;
In c,java,c++ we must specify the data types. Where as in Python , on need to specify the type. It will automatically considered. This concept is called Dynamically typed Programming language.
So Python supports the Dynamically Typed Programming language.
Means : When ever we assign the value to the variable python will automatically take the datatype will be treated.
Examples:
- a=10 ------> Integer Type
- b=50.385 ---------> Float Type
- name="Ramu" ---------> String Type
- x=True ------------> Boolean Type
a=10
b=50.48
name= "Nani"
x=True
print(a)
print(b)
print(name)
print(x)
output :
10
50.48
Nani
True



0 Comments