0% found this document useful (0 votes)
13 views8 pages

MyNotes - Python Bootcamp

The Complete Python Bootcamp course covers a comprehensive range of topics from Python basics to advanced concepts. Key areas include data structures, control flow, functions, object-oriented programming, and error handling, along with practical projects like a Tic Tac Toe game. Course materials and additional resources are available on GitHub.

Uploaded by

svishwash57
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)
13 views8 pages

MyNotes - Python Bootcamp

The Complete Python Bootcamp course covers a comprehensive range of topics from Python basics to advanced concepts. Key areas include data structures, control flow, functions, object-oriented programming, and error handling, along with practical projects like a Tic Tac Toe game. Course materials and additional resources are available on GitHub.

Uploaded by

svishwash57
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/ 8

Complete Python

Bootcamp
Go from zero to Hero in Python 3
CourseNotes:
https://github.com/Pierian-Data/Complete-Python-3-Bootcamp
Index
 Python Object and Data Structure Basics
o Numbers – Follow CourseNotes
o Variable Assignment
o Strings
o Print formatting with Strings
o Lists
o Dictionaries
o Tuples
o Sets and Booleans
o Files
o Object & Data Structure Practice Problems
 Python Comparison Operators – Follow CourseNotes
 Python Statements
o Introduction to Python Statements
o If, elif, and else Statements
o For loops
o While loops
o Useful operators
o List comprehensions
o Practice Problems
 Methods and Functions
o Methods
o Functions
o Function Practice Problems
o Lambda Expressions – Map and Filter – Follow CourseNotes
o Nested Statements and Scope – Follow CourseNotes
o Args and Kwargs
o Function and Methods Practice Problems
 Milestone Project – 1 (Tic Tac Toe Game)
o Warm Up Project Exercises
o Milestone Project 1
 Object Oriented Programming
o Introduction
o Basics before learning classes
o Class keyword & Attributes
o Methods
o Inheritance
o Polymorphism
o Special (MagicDunder Methods)
o Exercise 1
o Exercise2
o Challenging Exercise
 Modules and Packages – Follow CourseNotes and watch it’s video
 Errors and Exception Handling – Follow CourseNotes
Python Object and Data
Structure Basics
Python Data Types
Variables
Variable Names
Dynamic typing

Example

In Python In other language

You might also like