Skip to content

Lesson 01

Chad Perkins edited this page Aug 3, 2022 · 19 revisions

Introduction to Programming

Why Python

What is Python

  • High Level
  • Interpreted
  • Dynamically Typed
  • Focus on readability

Versions

Python Editors

High Level vs Low Level

Interpreted vs. Compiled

Syntax

Camels vs Snakes

  • Camel Case
    • myName
    • getFunction
  • Snake Case <-- Python Preferred
    • my_name
    • get_function
Clone this wiki locally