Welcome to collectivesolver - Programming & Software Q&A with code examples. A website with trusted programming answers. All programs are tested and work.

Contact: aviboots(AT)netvision.net.il

Prodentim Probiotics Specially Designed For The Health Of Your Teeth And Gums

Instant Grammar Checker - Correct all grammar errors and enhance your writing

Teach Your Child To Read

Powerful WordPress hosting for WordPress professionals

Disclosure: My content contains affiliate links.

31,167 questions

40,724 answers

573 users

How to use inline if else statement in Python

3 Answers

0 votes
b = 7
a = 99 if b > 5 else 33

print(a)
print(b) 
 
 
 
'''
run:
 
99
7
 
'''

 





answered Apr 30, 2021 by avibootz
0 votes
a = 3
b = 22

print(a if a != 3 else b)

 
 
 
'''
run:
 
22
 
'''

 





answered Apr 30, 2021 by avibootz
0 votes
b = 12

a = 11 if b == 3 else (99 if b > 8 else 77)

print(a)

 
 
 
'''
run:
 
99
 
'''

 





answered Apr 30, 2021 by avibootz

Related questions

2 answers 89 views
1 answer 79 views
1 answer 28 views
28 views asked Oct 23, 2022 by avibootz
2 answers 44 views
44 views asked Oct 7, 2022 by avibootz
2 answers 61 views
61 views asked May 31, 2021 by avibootz
...