Python Control Flow and Logical Operators
Feb 3, 2021
Today is Day 3 of the Angela Yu course 100 Days of Code — The Complete Python Pro Bootcamp for 2021.
Day 3 — Control Flow and Logical Operators
On Day 3 Angela teaches the following:
- Control Flow
- Logical Operators
At the end of the day you will build a treasure island game.
Control Flow
Control Flow is the order in which a program is executed. This is done using if-elif-else statements.
Logical Operators
Python has 3 logical operators:
- and
- or
- not
Treasure Island
Today’s project was Treasure Island. The user will enter decisions and based on their input the program will behave differently.
You can click here to get all of the solutions of Github.
Have a great day and see you tomorrow!!