-
Python Crash Course: Day 5
Written by
on
Chapter 5 talks about conditionals. I was re-introduced to the concepts of writing if statements in Python. A conditional test is an expression that can be evaluated as True or…
-
Python Crash Course: Day 4
Written by
on
In chapter 4, I learned about looping through lists. This chapter focused on the for loop, which is used for performing the same action on every item in a list.…
-
Python Crash Course: Day 3
Written by
on
Chapter 3 re-introduced me to lists. A list is a collection of items in a particular order. In Python, square brackets[ ], indicate a list and each item in the…
-
Python Crash Course: Day 2
Written by
on
Chapter 2 of Python Crash Course looked at variables and data types. Variables A variable acts like a labeled container that stores data in a computer’s memory. Every variable is…
-
Python Crash Course: Day 1
Written by
on
For this series, I decided to tackle Python by reading Python Crash Course: A Hands-On, Project-Based Introduction to Programming by Eric Matthes. I will be reading the first 11 chapters…