0
Can anyone explain this please
IF statements
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 đđ
0
Thanks