Python Forum
Search Results
Post Author Forum Replies Views Posted [asc]
    Thread: Help with Creating a Script for Automating Reports
Post: RE: Help with Creating a Script for Automating Rep...

For the monthly report, it sounds like you mostly need to find all the weeks in a month (be it four or five). You could do this in a couple of ways -- I would probably use column B of the spreadsheet...
jjc385 General Coding Help 1 1,926 Dec-29-2020, 10:21 PM
    Thread: Stumped by my own code (ratio & epoch-time calculation).
Post: RE: Stumped by my own code (ratio & epoch-time cal...

First you calculate how many real seconds are in a game year, and then you use this value to calculate how many game years have passed. (real seconds elapsed) / (real seconds per game year) = (# game...
jjc385 General Coding Help 2 2,145 Dec-29-2020, 08:10 PM
    Thread: Difference between math.pow and **
Post: RE: Difference between math.pow and **

The difference between c * pow(math.log(r), 3)) and (c*math.log(r))**3 is that the constant c is being cubed in the second one but not the first. Compare that to c*(math.log(r))**3
jjc385 General Coding Help 5 4,664 Dec-29-2020, 07:55 PM

User Panel Messages

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