5. Making Choices
If... statement
If... statementif "hello" in "helloworld":
print("it's in the string!")If...else statement
If...else statementsister_age=15
brother_age=12
if sister_age > brother_age:
print("sister is older!")
else:
print("brother is older")If...elif...else statement
If...elif...else statementLast updated