Hi there! Today is Day 3 of 100 Days of code.
I learned a lot of new things today. I also did my third project in programming python.
What I learned today,
Conditional Statements ✅
num = 27
if num < 20:
print("The value is less than 20")
else:
print("The value is greater than 20") # print
Logical Operators ✅
true and false # false
true or false # true
not true # false
Code Blocks ✅
Scope ✅
The final project was an adventure game.
Discussion (0)