Become A Python Developer in 45 Days - Bababaana
Become A Python Developer in 45 Days - Bababaana
Become a
Python
Developer.
You can become a Python
Developer in 45 Days!
02
01 INTRODUCTION
TO PROGRAMMING
Characteristics of a programming
language:-
Abstraction is a must-have
Characteristic for a programming
language in which the ability to
define the complex structure and
then its degree of usability comes.
05
A portable programming language is
always preferred.
02 INTRODUCTION
TO PYTHON
PROGRAMMING
What is Python?
Python is a popular programming
language. It was created by Guido van
Rossum, and released in 1991.
It is used for:
web development (server-side),
software development,
mathematics,
system scripting.
Why Python?
Advantages of Python:
4) No License
5) Unstructured
03 INSTALLATION OF
PYTHON
Installation of Python:
Installation of Python:
04 WRITING 1ST
PROGRAM WITH
PYTHON
C Programming:
#include <stdio.h>
int main() {
// printf() displays the string inside
quotation
printf("Hello, World!");
return 0;
}
16
JAVA:
class HelloWorld
{
public static void main(String[ ] args)
{
System.out.println("Hello, World!");
}
}
Python:
Print(“Hello, world”)
05 INTRODUCTION TO
DATA TYPES IN
PYTHON
What is Mutable?
Mutable sequences can be changed after
creation. Some of Python’s mutable data
types are lists, byte arrays, sets, and
dictionaries.
18
What is Immutable?
String
a = "Hello"
print(a)
19
05 A SIMPLE
CALCULATOR USING
PYTHON
Input:
Output: