Author: Danielle Brantley
-
Python Crash Course: Day 8
Written by
on
Chapter 8 was all about functions. A function is a reusable block of code that performs a specific task. It helps organize your code and makes it more readable and…
-
Python Crash Course: Day 7
Written by
on
In chapter 7, I reviewed the input function and while loops. The Input Function The input() function is used to pause a program and it waits for the the user…
-
Python Crash Course: Day 6
Written by
on
Chapter 6 was all about dictionaries. A dictionary in Python is a collection of key-value pairs. A key-value pair is a set of values associated with each other. Each key…
-
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…