Created
November 21, 2018 21:15
-
-
Save Badel2/19d6957966c225e764e1a82178469352 to your computer and use it in GitHub Desktop.
Hello world in python
This file contains hidden or 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
#!/usr/bin/env python3 | |
import random | |
random.seed(0x230f9ab296eb91053876d5fdcd15b7b989a12fd4451927196eafd39502b4487571ab839da616c9caea2089dd52e5219b809b5f735aadcec7dde80a96c2714b36b5f192fd1cdb3732994d0c5385ebb51a828d31205678b8eac7ab75a18c1b259ee18c986336fb38fb313e37b8*16**3168+1) | |
print("".join([chr(32+int(random.random()*96)) for i in range(13)])) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment