given a number of days(N) as input,write a program to convrt N to years(Y),weeks(W),and days(D).
n = int(input('Enter number: ')) y, n = divmod(n, 365) w, n = divmod(n, 7) print(f'Years: {y}') print(f'Weeks: {w}') print(f'Days: {n}')
Need a fast expert's response?
and get a quick answer at the best price
for any assignment or question with DETAILED EXPLANATIONS!
Comments
Leave a comment