Module 02

Coding Fundamentals

Learn to Think Like a Programmer

Learn beginner Python in Thonny through variables, strings, conditionals, loops, lists, dictionaries, files, and debugging.

0 of 12 weeks complete0%

Learning Objectives

  • Explain what programming is and use Thonny to write and run Python code
  • Use variables, data types, operators, input, and strings in small programs
  • Control program flow with conditionals and loops
  • Use functions, lists, dictionaries, and simple file input/output
  • Debug beginner Python programs and build a small command-line project

Glossary

Variable
A named place to store a value in a Python program.
Function
A reusable block of code that can take input and return output.
Loop
Code that repeats multiple times based on a range or condition.
Syntax
The required structure and grammar of code.
Dictionary
A data structure that stores key-value pairs.