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 321 views
1 answer 229 views
1 answer 176 views
176 views asked Oct 23, 2022 by avibootz
2 answers 176 views
176 views asked Oct 7, 2022 by avibootz
2 answers 198 views
198 views asked May 31, 2021 by avibootz
1 answer 186 views
1 answer 172 views
...