Python Forum
what have you learned recently?
Thread Rating:
  • 0 Vote(s) - 0 Average
  • 1
  • 2
  • 3
  • 4
  • 5
what have you learned recently?
#14
(Sep-01-2022, 07:40 PM)Skaperen Wrote: how many weeks in a month?

I'd calculate that as 4.333 weeks in a month:~ 91 days = 3 month = 13 weeks.

4.333 * 3 is as close to 13 as makes no odds, but I've yet to work all of that in to my little script, so I'm unsure if it's going to work right now.

To add...

This is as far as I've got, as it's as far as I needed, for the time being:

hours = your_input

day  = 24
week = 7

days, hours = divmod(hours, day)
weeks, days = divmod(days, week)

if weeks:
    output = "Weeks: {}, Days: {}, Hours: {}".format(weeks, days, hours)
elif days:
    output = "Days: {}, Hours: {}".format(days, hours)
else:
    output = "Hours: {}".format(hours)

print(output)
Sig:
>>> import this

The UNIX philosophy: "Do one thing, and do it well."

"The danger of computers becoming like humans is not as great as the danger of humans becoming like computers." :~ Konrad Zuse

"Everything should be made as simple as possible, but not simpler." :~ Albert Einstein
Reply


Messages In This Thread
what have you learned recently? - by Skaperen - May-10-2022, 10:02 PM
RE: what have you learned recently? - by Skaperen - May-11-2022, 09:32 PM
RE: what have you learned recently? - by Jan_97 - Jul-18-2022, 03:49 PM
RE: what have you learned recently? - by Skaperen - Jul-19-2022, 12:25 AM
RE: what have you learned recently? - by Jan_97 - Jul-20-2022, 10:47 PM
RE: what have you learned recently? - by Skaperen - Jul-21-2022, 10:28 PM
RE: what have you learned recently? - by DPaul - Sep-01-2022, 06:03 AM
RE: what have you learned recently? - by rob101 - Sep-01-2022, 06:54 AM
RE: what have you learned recently? - by rob101 - Sep-01-2022, 07:57 AM
RE: what have you learned recently? - by Skaperen - Sep-01-2022, 07:40 PM
RE: what have you learned recently? - by rob101 - Sep-01-2022, 08:02 PM
RE: what have you learned recently? - by Skaperen - Sep-02-2022, 06:05 PM

Possibly Related Threads…
Thread Author Replies Views Last Post
  recently seen on another website Skaperen 1 2,358 Jul-20-2018, 09:34 PM
Last Post: nilamo
  Just learned that Unity is gone wavic 10 8,395 Apr-12-2017, 09:38 AM
Last Post: wavic
  first learned python metulburr 12 10,605 Jan-03-2017, 05:21 AM
Last Post: Larz60+

Forum Jump:

User Panel Messages

Announcements
Announcement #1 8/1/2020
Announcement #2 8/2/2020
Announcement #3 8/6/2020