Skip to content
Permalink
main
Switch branches/tags

Name already in use

A tag already exists with the provided branch name. Many Git commands accept both tag and branch names, so creating this branch may cause unexpected behavior. Are you sure you want to create this branch?
Go to file
 
 
Cannot retrieve contributors at this time
# file to calculate the amount of time the code would take to analyse whole file
def full(x):
y = x * (277804/5000)
ans = 5*y
simple = ans/60/60
print(ans)
print(simple)
return()
#full(50.32)
def smallfull(x):
y = x * (277804/250)
ans = 5*y
simple = ans/60/60
print(ans)
print(simple)
return()
smallfull(3.04)