top of page

Assignment Due Calculator V1.0 Python 3 (2022)

  • Writer: Brian Clark
    Brian Clark
  • Mar 3, 2022
  • 1 min read

I made a simple calculator help figure out how many assignments you have to finish before they are due. The following includes the source code, enjoy:

number1=int(input("Enter the number of assignments:-> \n"))
number2=int(input("Enter the days left before assignment is due:-> \n"))
result=number1/number2;
print("You Must Finish",result, " Of Those Assignments")

Python Guides. (2021, March). Your Guide For Success With Python. https://pythonguides.com/divide-two-numbers-in-python/

Comments


bottom of page