
Begin exploring python by using an online compiler to run code and view console output. Learn about .py files like main.py and how the console displays results.
Explore how Python variables store information and reference values with simple assignment like my_variable = 1, then update it to 2 to reflect changes, without keywords or explicit types.
Learn how to use for loops to process every item in a list and print them, then leverage enumerate to get index and value starting at 0 as you iterate.
Learn how to convert the fizz buzz logic into a reusable Python function, return values, and call it multiple times to keep code organized and avoid repetition.
Learn object oriented programming in Python by creating objects to store structured data, such as a cat with name and age, and calling methods like meow.
If you have always wanted to learn how to program, then this class is perfect for you.
This is a crash course in learning Python - a widely used programming language in fields such as web development, data science, artificial intelligence and more! This course will go into the basics of Python Programming, and then go through specific examples of how to implement Python code.
We will create an algorithm to find the factorial of a number, as well as learn how to represent people in a programming language.