If else statement

PHOTO EMBED

Fri Sep 01 2023 09:56:34 GMT+0000 (Coordinated Universal Time)

Saved by @pythonHub #python #python-hub #basics

num = -19

if num>=0:
    print(f"{num} is a positive number.")
else:
    print(f"{num} is a negative number.")

print("This will always be printed")
content_copyCOPY