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 300 views
1 answer 211 views
1 answer 160 views
160 views asked Oct 23, 2022 by avibootz
2 answers 158 views
158 views asked Oct 7, 2022 by avibootz
2 answers 178 views
178 views asked May 31, 2021 by avibootz
1 answer 167 views
1 answer 152 views
...