Skip to main content

Posts

Showing posts with the label #Write a Python program to convert days into years

ads1

Python Basic , 9. Write a Python program to convert days into years, weeks and days.

  9. Write a Python program to convert days into years, weeks and days. Solution :- day = int(input("Enter the days :- ")) year = (day//365) weeks = (day % 365)//7 days = day-((year * 365) + (weeks*7)) print("Year :- ",year) print("weeks :-",weeks) print("Day :-",days) Output :-

ads2