Created
March 27, 2020 19:56
-
-
Save auramo/095cba554ac9bd3b633910b6afcb657d to your computer and use it in GitHub Desktop.
Jenkkien ruumiit pääsiäiseks
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
days = 16 | |
current_body_count = 400 | |
body_count = current_body_count | |
for d in range(1, days+1): | |
if d % 3 == 0: | |
body_count = body_count * 2 | |
print("body count: ", body_count) | |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment