[Conditionals Concept] Update about.md (#3765)

TYPO!  😡
This commit is contained in:
BethanyG
2024-08-29 14:45:18 -07:00
committed by GitHub
parent e4bb420ff5
commit ee643b03e3

View File

@@ -108,7 +108,7 @@ Conditionals can also be nested.
if 18 > driver_age >= 16:
status = "Student driver, needs supervision."
elif driver_age == 18:
satus = "Permitted driver, on probation."
status = "Permitted driver, on probation."
elif driver_age > 18:
status = "Fully licensed driver."
else: