DeaD_EyE

alle tot?

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