0

Can anyone explain this please

IF statements

19th Jul 2020, 6:03 AM
Chirag Chavan
Chirag Chavan - avatar
3 Answers
0
Chirag Chavan It is a very simple concept. It is used to validate the truth value of a statement. If the condition is true, the code under it will be run. if "chirag" == "programmer": print("yes") else: print("no") Output: yes Keep on learning Python 😃😃
19th Jul 2020, 6:11 AM
Tomiwa Joseph
Tomiwa Joseph - avatar
0
Thanks
19th Jul 2020, 6:13 AM
Chirag Chavan
Chirag Chavan - avatar