Download as pdf or txt
Download as pdf or txt
You are on page 1of 1

Founder

Guido Van Rossum

Overview Ye
ar

1990

1. Python Introduction Easy

Purpose
Python Libraries helps to do lot of tasks
easily

Data Science
Application
Creating Websites

T
y
p
e

int

1 Integers
Example

1 40 789 947

Ty
pe

float

2 Floating Point
Example

1.548 23.5 4.6

T
y
p
e

str

3 String
Example

"champ" "Hai" "Hello"

T
y
p
e

list

4 List
Example

[26, "champ", 99]

T
y
Data Types
p
e

dict

5 Dictionaries
Example

{"Age":26 , "Name":"Champ","marks":99}

T
y
p
e

tup

6 Tuples
Example

(26,"champ",99)

T
y
p
e

set

7 Sets
Example

{"hai","champ"}

Ty
p
e

bool

8 Booleans
Example

True or False

Name should not start with Number

No multiple words with space


Variables Name Rules
No symbols except Underscore_

Avoid using Keywords

Assigning input values Subtopic 1

Subtopic 1

User input & Print


1. Simple Arithmetic

Subtopic 2

Power Subtopic 1

Create String Subtopic 1

Length of String Subtopic 1

Create Multiple Values Subtopic 1

2. String

String Index Subtopic 1

2. Data Structure

String Functions Subtopic 1

Splitting String Subtopic 1

Splitting String Based on Delimitter Subtopic 1

Formatting String Iterals Subtopic 1

Create & Indexing List Subtopic 1

Append data into list Subtopic 1

Python Boot Camp


Reverse Elements Subtopic 1

3. List

Nested List Subtopic 1

Shuffle Subtopic 1

Creating Dictionary Subtopic 1

Modifying value in dictionary Subtopic 1

4. Dictionary

Nested Key Subtopic 1

Dictionary Function Subtopic 1

Creating Tuples Subtopic 1

5. Tuples

Tuple Functions Subtopic 1

Create & Add data in Sets Subtopic 1

6. Sets

List to Set Subtopic 1

7. Boolean Function Subtopic 1

LIST Collection of Ordered Data Square Braces [] MUTABLE append - add elements pop - remove the element Sort - sorting elements index - Searching given element reverse - reverse the element

index - Searching given element which


LIST vs TUPLE vs SET vs
TUPLE Ordered Collection of Data Patenthesis () IMUTABLE Cannot be added specific element Cannot be removed Already sorted returns the position Cannot be reversed
DICTIONARY
SET Unordered Collection of Data Curly braces {} MUTABLE | No DUPLICATES add - add elements pop - remove the random element Cannot be sorted Cannot get index Cannot be reversed

Unordered collection which stores data in


DICTIONARY KEY, VALUE Basis Curly braces () MUTABLE | No DUPLICATES update - add values with key pop - remove the specified element sorted - sorting keys DEFAULT get - return value with element key Cannot be reversed

if else Subtopic 1

1. If else else if

if - elif - else Subtopic 2

Subtopic 1

For basic initialization

Subtopic 2

Odd / Even Subtopic 1

String Subtopic 1
2.For

Dictionary Subtopic 1

Subtopic 1

Increment

Range

Decrement

For Range If

3. Python statement Subtopic 1

3. While

Break Continue Subtopic 1

4.Enumerate Subtopic 1

5.Zip Subtopic 1

Without Arguement

With Arguement

6. Function Subtopic 3

Prime Number

7. Map Subtopic 1

8.Filter Subtopic 1

9. Lambda Subtopic 1

10. Args Subtopic 1

11. Kwargs Subtopic 1

You might also like