A beautiful place to live in at summer holidays , let's enjoy our time together The weather is so amazing in our town , that's why we need to book some rooms in one of the best places in north Africa https://youtu.be/BAmR6vC9FVg
Maybe sometimes, you think how about to covert a sum of seconds into minutes, hours , days and years . while I'm learning Python programming language , I wrote a code that converts the seconds this is the code. # this is a program that converts a total number of seconds # to years, days, hours, minutes and remining seconds # the code is totally written by : hakim print("This program helps you to convert Seconds to Years , Days , Hours and Minutes " ) while True: total_second = int(input("Enter the total number of seconds:")) total_min = total_second / 60 sec_remainder = total_second % 60 total_hour = total_min / 60 min_remainder = total_min % 60 total_day = total_hour / 24 hour_remainder = total_hour % 24 total_year = total_day / 365 day_remainder = total_day % 365 print("**********THE FINAL RESULT IS************") ...
have you ever ondered to increase your incomem, how earn extra money from online work, it is not so difficult to zork online. you just need some patience and perseverance to reach your dreams
Comments
Post a Comment