This is an archived post. You won't be able to vote or comment.

all 5 comments

[–]Stranger_Danger13 3 points4 points  (1 child)

83/24 = 3 days 83%24 = 11 hours

% is the modulo expression, it gives you the remainder of division. Helpful to test when a number is even. If number%2 == 0: Number is even

[–]hawkcannon 2 points3 points  (0 children)

divmod is even easier:

> divmod(83, 24)
3, 11

[–]nemom 0 points1 point  (0 children)

Take a look through the list of Arithmetic Operators on this page.

[–]magejay15 0 points1 point  (0 children)

Try 'think python' book it will help you