Python BasicsLearn the fundamentals of Python programming language
6 konu
Introduction to PythonOverview of Python, installation, and basics of running Python programs
2 ders
Python SyntaxExplore the fundamentals of programming in Python, encompassing syntax and essential concepts to develop strong coding skills.
Control FlowControl Flow in Python involves the understanding and implementation of decision-making processes and looping structures to efficiently execute code.
Control FlowLearn how to control the flow of your program
2 ders
Conditional StatementsConditional statements are used in programming to make decisions based on certain conditions using if, else, and elif statements.
LoopsLoops are a programming construct that allows for the repetition of a block of code multiple times until a specified condition is met.
Functions and ModulesOrganize your code into reusable functions and modules
2 ders
FunctionsPython allows programmers to define and use their own functions, which are blocks of code that perform specific tasks.
ModulesModules are external files containing code that can be imported and used in programs to add additional functionality and simplify coding tasks.
File HandlingRead from and write to files using Python
2 ders
Reading FilesHow to read data from files
Writing FilesHow to write data to files
Error HandlingHandle errors and exceptions in Python
2 ders
ExceptionsUnderstanding exceptions and error handling
LoggingLogging error messages and debugging information
Object-Oriented ProgrammingIntroduction to object-oriented programming (OOP) concepts
2 ders
Classes and ObjectsCreating classes and objects in Python
InheritanceUnderstanding inheritance and creating subclasses