0% found this document useful (0 votes)
52 views13 pages

SUMMER Intern Presentation

Python is a popular programming language used for web development, machine learning, and other applications. It is suitable for both beginners and experienced programmers. The presentation covers Python basics like data types, variables, loops, statements, and libraries like NumPy for arrays, Pandas for data analysis, and Seaborn for data visualization. Python is concluded to be very useful for tasks like data visualization and game design.
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as PPTX, PDF, TXT or read online on Scribd
0% found this document useful (0 votes)
52 views13 pages

SUMMER Intern Presentation

Python is a popular programming language used for web development, machine learning, and other applications. It is suitable for both beginners and experienced programmers. The presentation covers Python basics like data types, variables, loops, statements, and libraries like NumPy for arrays, Pandas for data analysis, and Seaborn for data visualization. Python is concluded to be very useful for tasks like data visualization and game design.
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as PPTX, PDF, TXT or read online on Scribd
You are on page 1/ 13

SUMMER INTERNSHIP

PRESENTATION
ON
PYTHON
INTRODUCTION
Python is a high-level, general-purpose and a very popular programming
language. Python programming language (latest Python 3) is being used
in web development, Machine Learning applications, along with all
cutting edge technology in Software Industry. Python Programming
Language is very well suited for Beginners, also for experienced
programmers with other programming languages like C++ and Java
Below are some facts about Python Programming Language:
Python is currently the most widely used multi-purpose, high-level
programming language.
Python allows programming in Object-Oriented and Procedural paradigms.
Python programs generally are smaller than other programming languages
like Java. Programmers have to type relatively less and indentation
requirement of the language, makes them readable all the time.
Python language is being used by almost all tech-giant companies like –
Google, Amazon, Facebook, Instagram, Dropbox, Uber… etc.
The biggest strength of Python is huge collection of standard library which can
be used for the following:
Machine Learning
GUI Applications (like Kivy, Tkinter, PyQt etc. )
Web frameworks like Django (used by YouTube, Instagram, Dropbox)
Image processing (like OpenCV, Pillow)
Web scraping (like Scrapy, BeautifulSoup, Selenium)
Test frameworks
Multimedia
Scientific computing
Text processing and many more..
hello world program
# This program prints Hello, world!

Code: print('Hello, world!')

Output:
Comments:
single line comments use “#”
multi line comments use “ “ “ ” ” ”

Variables
We can assign any variable by assigning variable name to it with out using any
typeof variable in the syntax
rules for naming variable
A variable can have a short name (like x and y) or a more descriptive name
(age, carname, total_volume). Rules for Python variables:A variable name
must start with a letter or the underscore character
A variable name cannot start with a number
A variable name can only contain alpha-numeric characters and
underscores (A-z, 0-9, and _ )
Variable names are case-sensitive (age, Age and AGE are three different
variables)
data types
The data stored in memory can be of many types. For example, a person's age
is stored as a numeric value and his or her address is stored as alphanumeric
characters. Python has various standard data types that are used to define the
operations possible on them and the storage method for each of them.
Python has five standard data types-
Numbers
String
List
Tuple
Dictionary
loops and statements
While Loop: 
In python, while loop is used to execute a block of statements repeatedly
until a given a condition is satisfied. And when the condition becomes
false, the line immediately after the loop in program is executed.

for in Loop: For loops are used for sequential traversal. For example:
traversing a list or string or array etc. In Python, there is no C style for
loop, i.e., for (i=0; i<n; i++). There is “for in” loop which is similar to 
for each loop in other languages. Let us learn how to use for in loop for
sequential traversals.
If-else statements:
numpy
NumPy is a Python library used for working with arrays.
It also has functions for working in domain of linear algebra, fourier
transform, and matrices.
NumPy was created in 2005 by Travis Oliphant. It is an open source
project and you can use it freely.
NumPy stands for Numerical Python
pandas
Pandas is a Python library.
Pandas is used to analyze data.

Seaborn
Seaborn is a library that uses Matplotlib underneath to plot graphs. It
will be used to visualize random distributions.
conclusion
python is very useful for data visualisation and it is used in graphics
also like game design.it is a widely used langauage now a days.

You might also like