Skip to navigation
Skip to navigation
Skip to search form
Skip to login form
Skip to footer
Skip to main content
MVP189
LEO777
LEO777
LEO777
LEO777
LEO777
LEO777
LEO777
LEO777
LEO777
PAREPOS
JAVABET99
KONTAN88
PEWE128
LAGA88
SKY99IDN
BUANA88
BOXING55
DEWISRI88
DEWISRI88
DEWISRI88
MVP189
slot mania
MVP189
situs tergacor
pg slot wallet
Accessibility options
Accessibility profiles
Visual impairment
Seizure and epileptic
Color vision deficiency
ADHD
Learning
Content adjustments
Readable font
Highlight titles
Highlight links
Stop animations
Text size
+
+ +
+ + +
Line height
+
+ +
+ + +
Text spacing
+
+ +
+ + +
Color adjustments
Dark contrast
Light contrast
High contrast
High saturation
Low saturation
Monochrome
Orientation adjustments
Reading guide
Reading Mask
Big black cursor
Big white cursor
Email: it@huph.edu.vn
Email: it@huph.edu.vn
Các khóa học
Link list
Đổi giao diện
Giao diện cũ
Giao diện mới
Learning AI
Machine Learning cơ bản
en
English
Technology
Programing Language
Udemy - Learn Python Programming A-Z Bootcamp + 300 Exercises 2025-1
0 students
Last updated
Mar 2025
Enrol now
Overview
Course content
Instructors
About the course
Show more...
Course content
Sections:
16
•
Activities:
0
•
Resources:
243
Expand all
Section 1
1 - Coding environment
1 Google Colab
Section 2
2 - Data types (Part 1)
1 Numeric data types int and float
2 Strings
3 Coding exercise 1 Reading input from users
4 Coding exercise 2 Variable type checking using type function
5 Coding exercise 3 Type conversion
6 Coding exercise 4 Basic arithmetic operations
7 Coding exercise 5 Modulus Operator
8 Coding exercise 6 Floor division
Section 3
3 - Data types (Part 2)
1 Introduction to boolean data types true and false
2 Coding exercise 7 Boolean expressions
3 Coding exercise 7 Truthy and Falsy values
4 Coding exercise 8 Boolean basics
5 Coding exercise 9 A simple comparison
6 Coding exercise 10 Logical operators
Section 4
4 - Data types (Part 3)
1 Strings single and double quotes
2 Coding exercise 11 To combine two strings
3 Coding exercise 12 To calculate a string length
4 Coding exercise 13 String indexing
5 Coding exercise 14 String slicing
6 Coding exercise 15 Converting case
7 Coding exercise 16 Replace function
8 Coding exercise 17 Combine the exercises
9 Coding exercise 18 Checking substrings
10 Coding exercise 19 Determine the ASCII code
11 Coding exercise 20 Find the smallest and largest character in a string
12 Coding exercise21 Check characters in a string
13 Coding exercise 22 Check if the characters in a string are numeric
14 Coding exercise 23 Check if a string starts with specific characters
15 Coding exercise 24 Check if a string ends with specific characters
16 Coding exercise 25 Find the index of a character in a string
17 Coding exercise 26 Count the number of occurrences of a character
18 Coding exercise 27 Convert the first letter of a string to uppercase
19 Coding exercise 28 Convert a word in a sentence to uppercase
20 Coding exercise 29 Convert all letters in a string to lowercase
21 Coding exercise 30 Convert all letters in a string to uppercase
22 Coding exercise 31 Replace a substring with another substring
23 Coding exercise 32 Split a sentence into words
Section 5
5 - Math modules
1 Coding exercise 33 To calculate diagonal of a rectangle
2 Coding exercise 34 To truncate a number
3 Coding exercise 35 Floor function
4 Coding exercise 36 Ceil function
5 Coding exercise 37 Factorial
6 Coding exercise 33 Logarithm
7 Coding exercise 34 Remainder of a division
Section 6
6 - Conditional statements
1 The if Statement
2 Coding exercise 35 The if else Statement
3 Coding exercise 36 The if elif else Statement
4 Coding exercise 37 Nested Conditional Statements
5 Coding exercise 38 If statement using logical operations
6 Coding exercise 39 If statement using comparison operators
7 Coding exercise 40 Conditional statement with logical operators
8 Coding exercise 41 Temperature message
9 Coding exercise 42 Eligibility to vote
10 Coding exericse 43 To check the divisibility
Section 7
7 - Loops - Control flow
1 For Loops
2 Coding exercise 44 While Loops
3 Coding exercise 45 Break Statement
4 Coding exercise 46 Continue Statement
5 Coding exercise 47 Nested Loops
6 Coding exercise 48 Sum of all numbers between 1 and 10
7 Coding exercise 49 Multiplication table
8 Coding exercise 50 Countdown
9 Coding exercise 51 To check the password
10 Coding exercise 52 Cashier system
11 Coding exercise 53 Iterating over a string
Section 8
8 - Functions
1 Introduction to functions
2 Coding exercise 54 Arguments for calling a function
3 Coding exercise 55 Return statement
4 Coding exercise 56 Functions with default values
5 Coding exercise 57 Sum of two parameters
6 Coding exercise 58 Convert Celsius to Fahrenheit
7 Coding exercise 59 To check if a number is even or odd
8 Coding exercise 60 Find the maximum number
9 Coding exercise 61 Functions with multiple return values
10 Coding exercise 62 Local variables
11 Coding exercise 63 Global variables
12 Coding exercise 64 To modify a global variable
13 Coding exercise 65 To have local and global variables together
14 Coding exercise 66 A function with three return values
Section 9
9 - Lists
1 Introduction to lists Creating and accessing lists
2 Coding exercise 1 Modifying a list
3 Coding exercise 2 Modifying a list using append extend insert
4 Coding exercise 3 Modifying a list using remove del clear
5 Coding exercise 4 List operations Part 1 concatenation
6 Coding exercise 5 List operations Part 2 repetition
7 Coding exercise 6 List operations Part 3 membership test in not in
8 Coding exercise 7 List operations Part 4 iteration using for loops
9 Coding exercise 8 Common list methods Part 1 len
10 Coding exercise 9 Common list methods Part 2 index
11 Coding exercise 10 Common list methods Part 3 count
12 Coding exercise 11 Common list methods Part 4 sort
13 Coding exercise 12 Common list methods Part 5 reverse
14 Coding exercise 13 Common list methods Part 6 copy
15 Coding exercise 14 Appending two lists
16 Coding exercise 15 Shopping list
17 Coding exercise 16 Sum of numbers
18 Coding exercise 17 To reverse a list
19 Coding exercise 18 Largest number in a list
Section 10
10 - Tuples
1 Introduction to tuples and their difference with lists
2 Coding exercise 19 Creating different types of tuples
3 Coding exercise 20 Accessing elements and slicing
4 Coding exercise 21 Concatenation and Repetition
5 Coding exercise 22 Packing and unpacking
6 Coding exercise 23 Unpacking a tuple
7 Coding exercise 24 Using count and index functions
8 Coding exercise 25 Membership testing
9 Coding exercise 26 Iterating through a tuple
10 Coding exercise 27 Element wise sum of two tuples
11 Coding exercise 28 To print first and last elements
12 Coding exercise 29 To calculate the number os elements of a tuple
13 Coding exercise 30 Number of cities
14 Coding exercise 31 Check the user input
Section 11
11 - Sets
1 Introduction to sets and its comparison with tuples and lists
2 Coding exercise 32 Creation of sets
3 Coding exercise 33 Using add remove and discard functions for a set
4 Coding exercise 34 Combining two sets using pipe operator and union function
5 Coding exercise 35 Set intersection using two methods
6 Coding exercise 36 Set difference using two methods
7 Coding exercise 37 Symmetric difference
8 Coding exercise 38 Membership testing
9 Coding exercise 39 Iterating through a set
10 Coding exercise 40 Subset and superset
11 Coding exercise 41 Set comprehension using for loops
12 Coding exercise 42 Set comprehension for even numbers
13 Coding exericse 43 Set comprehension for vowel letters
14 Coding exercise 44 Set comprehension for vowel letters Part 2
15 Coding exercise 45 Frozen sets
16 Coding exercise 46 Chaining set method
17 Coding exercise 47 To find unique words
18 Coding exercise 48 To find common elements
19 Coding exericse 49 Lottery draw
20 Coding exercise 50 To check subset and superset
21 Coding exercise 51 To check if a value is present in a set
22 Coding exercise 52 To find the maximum and minimum numbers in a set
23 Coding exercise 53 To find the third largest number
24 Coding exercise 54 To find the pair with maximum product
25 Coding exercise 55 Finding common elements of lists using sets
26 Coding exercise 56 Finding unique values in a list using sets
27 Coding exercise 57 Finding the 2nd smallest number in a list using sets
Section 12
12 - Dictionaries
1 Introduction to dictionaries
2 Comparing dictionaries with lists tuples and sets
3 Coding exercise 58 To add key value pairs
4 Coding exercise 59 To remove items from a dictionary
5 Coding exercise 60 To iterate through a dictionary
6 Coding exercise 61 To iterate through a dictionary 2
7 Coding exercise 62 Having a new item in our dictionary
8 Coding exercise 63 An example of a dictionary called car
9 Coding exercise 64 Dictionaries and if conditions
10 Coding exercise 65 To find the number of items in a dictionary
11 Coding exercise 66 To merge or update two dictionaries
12 Coding exercise 67 To loop through keys values and items
13 Coding exercise 68 To use nested dictionaries
14 Coding exercise 69 Sum of all values in a dictionary
15 Coding exercise 70 Multiply of all values in a dictionary
Section 13
13 - Formatted printing
1 Coding exercise 71 Formatted printing using f strings
2 Coding exercise 72 Formatted printing using format function
3 Coding exercise 73 Positional arguments
4 Coding exercise 74 Named arguments
5 Coding exercise 75 Alignment and padding
6 Coding exercise 76 Formatting numbers
7 Coding exercise 77 Adding commas to large numbers
Section 14
14 - Exception handling
1 Introduction
2 Coding exercise 1 Try except block
3 Coding exercise 2 Catching specific exceptions
4 Coding exercise 3 Multiple exceptions
5 Coding exercise 4 Finally blocks
6 Coding exercise 5 Else blocks
7 Coding exercise 6 Custom exception
8 Coding exercise 7 Catching division by zero
9 Coding exercise 8 Invalid input
10 Coding exercise 9 multiple exceptions index error
11 Coding exercise 10 Bank simulation system for withdrawal
12 Coding exercise 11 Login system simulation
Section 15
15 - Object-Oriented Programming
1 Introduction to classes
2 Coding exercise 12 Priting different messages using a class
3 Coding exercise 13 Calculation of area for different shapes
4 Coding exercise 14 Convertor class
5 Coding exercise 15 Test processor class
6 Coding exercise 16 Constructors and destructors
7 Coding exercise 17 Constructors and destructors 2
8 Coding exercise 18 Bank account system
9 Coding exercise 19 Shopping cart
10 Coding exercise 20 Managing student record system
11 Coding exercise 21 Library system
12 Coding exercise 22 Car class
13 Coding exercise 23 Class attributes
14 Coding exericse 24 Class method
15 Introduction to encapsulation
16 Coding exercise 25 Public attributes
17 Coding exercise 26 Protected attributes
18 Coding exercise 27 Private attributes
19 Coding exercise 28 Getter and setter method
20 Coding exercise 29 Encapsulation for Tesla
21 Introduction to inheritance
22 Coding exercise 30 Single inheritance
23 Coding exercise 31 Multiple inheritance
24 Coding exercise 32 Multi level inheritance
25 Coding exercise 33 Hierarchical inheritance
26 Coding exercise 34 Hybrid inheritance
27 Coding exercise 35 Super method
28 Coding exercise 36 Method resolution order
29 Coding exercise 37 Default arguments
30 Introduction to polymorphism
31 Coding exercise 38 Overriding
32 Coding exercise 39 Overloading a shape class
33 Coding exercise 40 Overloading a text message
34 Coding exercise 41 Overloaded __add__
35 Coding exercise 42 Some overloadded functions
36 Coding exercise 43 Polymorphism with functions and objects
37 Coding exercise 44 Duck typing
Section 16
16 - Data structure modules
1 Collection module
2 Coding exercise 45 Counter for different strings
3 Coding exercise 46 Counting words and letters
4 Coding exercise 47 Defaultdictint
5 Coding exercise 48 Defaultdictlist
6 Coding exercise 49 Defaultdictset
7 Coding exercise 50 Namedtuple
8 Coding exercise 51 Namedtuple for GPS coordinates
9 Coding exercise 52 Namedtuple for student record system
10 Coding exercise 53 Namedtuple for storing employees data
11 Coding exercise 54 Namedtuple for color format
12 Coding exercise 55 Namedtuple and functions
13 Coding exercise 56 Converting a Named tuple
14 Coding exercise 57 Using the _replace function for namedtuples
15 Coding exercise 58 Working with deques in Python
16 Coding exercise 59 First in First Out in deques
17 Coding exercise 60 Last in First Out in deques
18 Introduction to ordered dictionaries
19 Coding exercise 61 Everything about ordered dictionaries
20 Coding exercise 62 Creating and accessing elements of an ordered dictionary
21 Coding exercise 63 Task completion system
22 Introduction to chainmaps
23 Coding exercise 64 Everything about chainmaps
24 Coding exercise 65 Managing configuration settings
25 Coding exercise 66 Variable scope resolution
26 Introduction to heapq
27 Coding exercise 67 Min heap
28 Coding exercise 68 Adding and removing elements from a heap
29 Coding exercise 69 Prority queue using heaps
30 Coding exercise 70 Finding the smallest element
31 Coding exercise 71 Finding the largest element
32 Coding exercise 72 How min heap works
Instructors
Enrolment options
Udemy - Learn Python Programming A-Z Bootcamp + 300 Exercises 2025-1
Course modified date:
4 Mar 2025
Enrolled students:
There are no students enrolled in this course.
Guests cannot access this course. Please log in.
Continue
Enrol now
This course includes
Resources
Share this course
Scroll to top
×
Close
×
Close