python logic if then code example
Example 1: python if condition
if my_condition:
# Do some stuff
print("Hello You!")
else:
# Do some stuff
print("Hello World!")
Example 2: or in if statement python
weather == "Good!" or weather == "Great!":
# Or the following
weather in ("Good!", "Great!"):