Download Calculator
I was downloading Overwatch again, and blizzard doesn't have an estimated download timer, and the online ones are kind of weird with the bits and bytes and the different types, so I just made a simple one so I don't have to rack my brain everytime.
size = float(input("Enter the download size in gigabytes: "))
speed = float(input("Enter your download speed in megabytes per second: "))
size = size*1000
time = size/speed
print(time, "seconds")
time = time/60
print("Or")
print(time, "minutes")
time = time/60
print("Or")
print(time, "hours")
Comments
Post a Comment