Skip to content

Latest commit

 

History

History
16 lines (13 loc) · 1.7 KB

README.md

File metadata and controls

16 lines (13 loc) · 1.7 KB

Learning Python

Code examples and notes from the learning python course on learnpython.org using repl.it online IDE. I will be adding new lessons and links as I go along with the course.

Basic Python

  1. Hello World! - Basic printing concepts to print "Hello World!"
  2. Variables and Types - Variables, data types, and how to use them.
  3. Lists - How to make, define, and call back lists.
  4. Basic Operators - Math in Python and multiplying variables and data types.
  5. String Formatting - Calling back strings and other data to be put in output.
  6. Basic String Operations - Interacting with strings including, case of letters and splicing.
  7. Conditions - How to use boolean and operator conditions with variables.
  8. Loops - "for" and "while" loops in Python to set conditions or a set number of times for your code to run.
  9. Functions - Making and calling functions to use in your code.

Hope this helps someone.