Skip to content

Instantly share code, notes, and snippets.

@arthuralvim
Created July 12, 2020 22:55
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save arthuralvim/f88c52eb718da08f2979a8d7a68e9288 to your computer and use it in GitHub Desktop.
Save arthuralvim/f88c52eb718da08f2979a8d7a68e9288 to your computer and use it in GitHub Desktop.
Máquina escolha minha pizza, por favor.
import random
from collections import Counter
random.seed(3)
pizzas = ['caipira', 'portuguesa', 'pepperoni', '4 queijos']
print(Counter([random.sample(pizzas, 1)[0] for r in range(1000)]))
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment