0% found this document useful (0 votes)
62 views

Course Overview: Python

This document provides an overview and introduction to a Python course. It outlines the instructor, Gopal Gupta from Jaipur, India, the medium as English and Hindi, and that no prerequisites are required. It then gives a brief introduction to Python, what it is, what it was created for, what it can be used for like scripting, app backends, AI, data analysis, and more. It also mentions the popular Python IDE PyCharm and provides a simple "Hello World" example to get started with Python.

Uploaded by

Harshal Nigam
Copyright
© © All Rights Reserved
Available Formats
Download as PDF, TXT or read online on Scribd
0% found this document useful (0 votes)
62 views

Course Overview: Python

This document provides an overview and introduction to a Python course. It outlines the instructor, Gopal Gupta from Jaipur, India, the medium as English and Hindi, and that no prerequisites are required. It then gives a brief introduction to Python, what it is, what it was created for, what it can be used for like scripting, app backends, AI, data analysis, and more. It also mentions the popular Python IDE PyCharm and provides a simple "Hello World" example to get started with Python.

Uploaded by

Harshal Nigam
Copyright
© © All Rights Reserved
Available Formats
Download as PDF, TXT or read online on Scribd
You are on page 1/ 14

Course Overview

Python
About me:

Gopal Gupta
Jaipur , Rajasthan
Unacademy.com/user/gopal_gupta
Medium of Course:

English & Hindi


Prerequisites:

None
purpose

Short & Sweet


Why ?
for (i = 0; i < n; ++i)
{
for (j = i + 1; j < n; ++j)
{
if (number[i] > number[j])
{
a = number[i];
number[i] = number[j];
number[j] = a;
}
}
}
INDRODUCTION

Gopal Gupta
Unacademy.com/user/gopal_gupta
What is Python?
Python is a popular programming language. It was created by Guido van Rossum,
and released in 1991.
What can we do with Python?
Scripting – easily automate repetitive tasks e.g. web crawling, sending emails…
App backends – use Python frameworks to build app backends fast with less code
AI & machine learning – number 1 language in this field – big library & data
collection
Data analysis & visualization – perfect for today’s big data world
Computation & calculation – simple syntax & many powerful libraries – scientists,
engineers, mathematicians can focus on creating algorithms, formulae, etc.
Desktop apps – Dropbox desktop app is written in Python! Need I say more?!
Education – Python is popular globally in schools, colleges, universities. It’s so simple
that young kids can pick it up, but so powerful PHD students use it.
Python Version
Python IDE

PyCharm
Let’s Start

>>> print("Hello, World!")


Hello, World!
Continue …………

You might also like