Python basics

The Basics of Python Syntax

Welcome to the first lesson of this Python Fundamentals course. This lesson is designed to lay the groundwork by briefly introducing you to the core concepts of Python programming. While subsequent lessons will explore these topics in greater detail, this introduction plays an important role in your learning journey.

The Basics of Python Classes and Objects

Object-oriented programming (OOP), which is a programming paradigm that groups code and the data it uses together, is a key feature in Python. The topic of OOP concepts and techniques alone can be covered by a full course in its own right. Since this course is more focused on Python features, this lesson will only cover the basics of how OOP is done in Python, specifically focusing on Python classes and objects.