Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- # true?
- # https://www.rnd.de/gesundheit/corona-zahlen-an-weihnachten-400000-neuinfektionen-ohne-massnahmen-rki-vizechef-warnt-vor-exponentiellem-wachstum-Q7IL4JKUHVDMRCT3JV22YONZSA.html
- from math import log2
- from datetime import datetime, timedelta
- tage = 10 * log2(83_000_000 / 400_000)
- delta = timedelta(days=tage)
- alle_tot = datetime(2020, 12, 24) + delta
- print(f"Wir werden alle sterben. Bald ist es so weit. Am {alle_tot:%x} sind wir alle tot.")
Add Comment
Please, Sign In to add comment