Learn
- if / else conditionals
- for loops
- while loops
- From Byte of Python read the following chapters
If score > 90 grade is A.
If score is between 80 and 90 then grade is B.
If score is between 70 and 80 then grade is C.
if score > 50 ? print("pass") : print ("fail")
At this point, you should:
- be comfortable writing if / else statements
- writing for loops
- writing while loops