Skip to content

Instantly share code, notes, and snippets.

@KarimullinArthur
Created April 17, 2022 16:59
Show Gist options
  • Save KarimullinArthur/a0793bbe8f814ccff022045803edee1e to your computer and use it in GitHub Desktop.
Save KarimullinArthur/a0793bbe8f814ccff022045803edee1e to your computer and use it in GitHub Desktop.
Ну работает же, П.С little рандомер
import time
def random():
getTime = time.time()
randInt = getTime % 1
randInt = str(randInt)
randInt = randInt[-1]
randInt = int(randInt)
return randInt
print(random())
print(random())
print(random())
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment