How to use if else statement in Python

2 Answers

0 votes
n = 13
if n == 13:
    print("n = 13")
else:
    print("n != 13")


'''
run:

n = 13

'''

 



answered May 7, 2017 by avibootz
0 votes
n = 13
if n == 13:
    print("n = 13")
    print("more code if true")
else:
    print("n != 13")
    print("more code if false")

print("last line of code")


'''
run:

n = 13
more code if true
last line of code

'''

 



answered May 8, 2017 by avibootz

Related questions

3 answers 318 views
1 answer 226 views
1 answer 175 views
175 views asked Oct 23, 2022 by avibootz
2 answers 173 views
173 views asked Oct 7, 2022 by avibootz
2 answers 195 views
195 views asked May 31, 2021 by avibootz
1 answer 185 views
1 answer 170 views
...