LPTHW Day 0

14 Apr 2019

Today’s Progress

print("Roosters", 100 - 25 * 3 % 4)
>>> 97

print(3 + 2< 5 -7)
>>> False
name = input("What is your name? ")
print(f"Your name is {name}.")

Thoughts: Basic stuff so far. No surprises which is a good thing considering I have coded some python before.

Link to work: exercises 0-5