0% found this document useful (0 votes)
1 views11 pages

Forgem Company

The document is an introduction to Python programming, aimed at beginners, covering its basics, features, and installation process. It explains programming as a means of communication with computers and highlights Python's simplicity and ease of understanding. Additionally, it discusses modules, the package manager 'pip', and the use of comments in code.

Uploaded by

Gaming Minecraft
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)
1 views11 pages

Forgem Company

The document is an introduction to Python programming, aimed at beginners, covering its basics, features, and installation process. It explains programming as a means of communication with computers and highlights Python's simplicity and ease of understanding. Additionally, it discusses modules, the package manager 'pip', and the use of comments in code.

Uploaded by

Gaming Minecraft
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/ 11

LEARN PROGRAMMING

Python programming
Basics
Beginners friendly
Practice questions
Also some fun projects
What is Programming
Just like we use language like English to
communicate with each other, we use a
programming language like python to
communicate with the computer.

Programming is a way to instruct the computer to


perform tasks.
What is Python
Python is a simple and easy to understand
language which feels like reading simple English.

This pseudo code nature of python makes it easy


to learn and understandable by beginners.
Features of python
Easy to understand = Less development
time
Fra and open source
High level language
Portable – works on linux/windows/Mac
Installation

Python can be easily installed from python.org


When you click on the download button, python

can be installed right after you complete setup


by executing the file for your platform.

Just
install it
like a
game
Basics of python

Create a file
Lets write out
called
very first print(“hello
hello.py and
python world”)
paste the
program.
code written
And you will
By clicking
Execute see “hello
on the run
this file world” in the
button
terminal
Chapter 1 : Modules
A module is a file containing code written by
somebody else (usually) which can be
imported
And used in our program

Example:- Flask, Pygame and pandas etc.


Chapter 1 : Pip
“Pip install
flask” installs
flask module

Pip is the
package
manager for
python

You can use


pip install a
module on
your system
Chapter 1 :Types of modules
There are 2 types of module in python
Extern
Built in
al
module
module
s
s
Need to
Pre-
installed in install
python Using pip

No need to There are


download so many
modules
From
internet In pip
Chapter 1 :Comment
Comments are used to write something which the programmer
does not want to execute
Comments can be used to explain the code without executing

You might also like