Skip to content

Instantly share code, notes, and snippets.

@debakarr
Last active June 19, 2023 06:29
Show Gist options
  • Save debakarr/978f90adbd3320b74dd87d72ad89467f to your computer and use it in GitHub Desktop.
Save debakarr/978f90adbd3320b74dd87d72ad89467f to your computer and use it in GitHub Desktop.
Python Course Outline

Python Course Outline

Session 1 - Basics

Installation

Download

https://www.python.org/downloads/

Install

https://realpython.com/installing-python/

Interpreter

https://docs.python.org/3/tutorial/interpreter.html

IDLE

https://docs.python.org/3/library/idle.html


Basic Syntax

Variables and Data types

Basic Operators and Expressions

  • arithmetic operators: +, -, *, /, %, **
  • comparison operators: <, >, <=, >=, ==, !=
  • logical operators: and, or, not
  • expressions and order of operations

Control Flow

  • conditional statements: if, elif, else
  • looping structures: for, while
  • break and continue statements

Functions and Modules

  • defining and calling functions
  • parameters and return values
  • built-in functions vs. user-defined functions
  • importing and using modules
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment