What.in the world.is haPPENING | Sololearn: Learn to code for FREE!
New course! Every coder should learn Generative AI!
Try a free lesson
- 1

What.in the world.is haPPENING

Else statements are really just annoying the hell outta me. Any help is GREAT.

28th Apr 2018, 1:08 PM
Ramaprasad Perumbala
Ramaprasad Perumbala - avatar
4 Answers
+ 7
Would appreciate if you provide a sample of what you do not understand about else statements, so that we can help you.
28th Apr 2018, 1:15 PM
Hatsy Rei
Hatsy Rei - avatar
+ 6
Syntax: if condition : #code 1 else : #code 2 If the condition is true, code 1 will be executed. However, if the condition is false, code 2 will execute instead. So, an else statement is a way of saying 'run this if the if statement is false'. Try practicing with some numbers to build your understanding. num = 100 if num < 100: print("Less than 100") else : print("Equal or greater than 100) Hope that helps xd
28th Apr 2018, 1:19 PM
Rrestoring faith
Rrestoring faith - avatar
+ 1
What language are you working in? Can we get more information on what you need help with?
2nd May 2018, 12:37 AM
Ben Allen (Njinx)
Ben Allen (Njinx) - avatar
0
@Rrestoring faith tysm I get it naow omg I’m so stupid
28th Apr 2018, 1:32 PM
Ramaprasad Perumbala
Ramaprasad Perumbala - avatar