Modules

https://www.youtube.com/watch?v=kDSd6LjeEiE In Lecture 12, the last of our Introduction to Python Programming course, we will dive into the concept of modules. A module is a file that contains Python variables, functions, and classes, which can be imported and used in other scripts. Understanding how to create, import, and utilize modules is crucial for building modular … Read more

Dictionaries

https://www.youtube.com/watch?v=J50_vD9ouq0 Welcome to Lecture 11 of our online Python programming course! In this lecture, we will dive deep into the topic of dictionaries. Dictionaries are a fundamental data structure in Python that allow us to store key-value pairs. We will learn how to create dictionaries, access and modify their elements, perform common operations on dictionaries, … Read more

Classes 2

https://www.youtube.com/watch?v=uRbzpuqdcss Welcome to Lecture 10 of our Python Programming online class series! This session is the second part of a two-part course on Classes. In this class, we will delve deeper into the concept of classes in computer science. A class is a compound data type that allows you to create your own data types … Read more

Classes 1

https://www.youtube.com/watch?v=i4Cjn6hNcO4 Welcome to Lecture 9 of our Python Programming online class series! This session is the first part of a two-part course on Classes. A class is a compound data type in Python that allows you to create your own data types by combining primitive data types or other compound data types. You will learn … Read more

Files

https://www.youtube.com/watch?v=GSSmoYRQaCU Welcome to the 8th lecture of our online Python programming course. In today’s session, we will delve into the topic of files. As we have learned in previous lectures, variables are temporary storage spaces in a computer’s RAM. However, when the computer is turned off or programs are closed, data in RAM is lost. … Read more

Lists

https://www.youtube.com/watch?v=VFq4248xtPo Join us for the 7th lecture of our online class, where we will dive deeper into the topic of lists in Python. This lecture will cover various aspects of working with lists, including indexing, slicing, adding and removing elements, concatenating lists, list methods, multi-dimensional lists, using the enumerate() function, and more. Prerequisites: Make sure … Read more

Types and recursion

https://www.youtube.com/watch?v=TkJV-k2e0Rc Welcome to Lecture 6 of our online Python programming course! In this session, we will delve into the concepts of types and recursion in Python. We will explore the built-in data types provided by Python, such as list, tuple, dict, and set. Additionally, we will understand how to work with these data types and … Read more

Strings

https://www.youtube.com/watch?v=AjQzIdAKR90 Welcome to the 5th lecture of our online Python programming course! In today’s session, we will dive into the world of strings and explore the various concepts related to them. Strings are an essential data type in Python, and understanding how to manipulate and work with them is crucial for any programmer. Join us … Read more

Iterations

https://www.youtube.com/watch?v=AjQzIdAKR90 Welcome to the 4th lecture of our online Python programming course. In this session, we will dive into the concept of iterations and explore how to write programs that execute specific tasks repeatedly. Iterations play a crucial role in automating repetitive processes and enhancing the efficiency of our code. By the end of this … Read more

Conditionals

https://www.youtube.com/watch?v=8oTAzCru9QU Welcome to the 3rd lecture of our Python programming course! In this lecture, we will dive into the topic of conditionals. Conditionals allow us to control the flow of program execution based on specific conditions. We will explore the “bool” type, which has the values “True” and “False,” and learn how to create Boolean … Read more