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 :-
All computer course for class 9th to 12th with proper practical and theory .........