Print & lists
Output values, store items in lists, and loop through them.
Python · college exercises
Practice files from Django Girls and early coursework—printing, lists, functions, input, conditionals, and loops.
# college-era Python practice
list2 = ["a", "b", "c"]
for name in list2:
print(name)
inp3 = input("Enter Numbers of friends you want:")
friends = ["wada"]
First script
The main beginner file in djangogirls/MeFirstPython.py—early Python practice
with printing, lists, functions, input, conditionals, and loops.
What this repo practices
Output values, store items in lists, and loop through them.
Read from the terminal and branch with if statements.
Define small functions and call them from the main script.
Repository
Python exercises from the Django Girls track and related notes.
This page—short overview of the repo on GitHub Pages.
python3 djangogirls/MeFirstPython.py from the repo root.