Oliver Hawthorne
New Coder
Python:
storage_needed = 12.8
storage_taken = 122.78
num = 122.78
if num < 12.8:
print("You do not have enough storage for this application")
else:
print("You have enough storage for this application")
quantity = 12
unit_price = 34.99
extended_price = quantity * unit_price
print(extended_price)
print("This is your total")
num = 12345
if num < 123
print("Below specified number")
else:
print("Above specified number")