Skip to content

Instantly share code, notes, and snippets.

@Los-had
Created May 16, 2021 21:09
Show Gist options
  • Save Los-had/c21ed7379ad53464737dd45b713d1d89 to your computer and use it in GitHub Desktop.
Save Los-had/c21ed7379ad53464737dd45b713d1d89 to your computer and use it in GitHub Desktop.
primeira gist, pegando variáveis aleatórias em python
from random import choice
valorum = "#yLR75@s56el"
valordois = "m!zR6VvFq75R"
valortres = "^JHNgr%oka4X"
valorquatro = "TF^OMZYyqx@&"
possibilidades = [valorum, valordois, valortres, valorquatro]
valoraleatorio = choice(possibilidades)
print(valoraleatorio)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment