Hi!
I just started python programming!
There's one thing I wondered about, the "elif" keyword.
Any other programming languages I used before use simply the "else if" syntax.
Does anyone have an idea why the python developers add the additional "elif" keyword?
Why not:
if a:
print("a")
else if b:
print("b")
else:
print("c")