Elif statements are confusing me | Sololearn: Learn to code for FREE!
New course! Every coder should learn Generative AI!
Try a free lesson
0

Elif statements are confusing me

Hello, I'm a beginner coder just to start. I understand that elif (in python) is simply a shortcut instead of using multiple if and else statements. For some reason, my mind is not wrapping around this concept. I feel that elif statements are simply saying if statements without saying the else part, if that makes any sense. Would someone be kind enough to explain elif statements in more simple terms with an example possibly? Thank you.

12th Jul 2022, 7:06 PM
Zane Al-Hamwy
Zane Al-Hamwy - avatar
1 Answer
+ 1
if Condition : // do if else : //else part if condition : //do if else : //do else ..... ..... Can be done same as: if Condition : // do if elif condition : //do if else : //do else elif reas as just else if (just one more if starts, in else part).
12th Jul 2022, 7:16 PM
Jayakrishna 🇮🇳