Spaces:
No application file
No application file
File size: 281 Bytes
fd30e2d |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 |
#! /usr/bin/env python3
"""
Senior Data Scientist.: Dr. Eddy Giusepe Chirinos Isidro
"""
import random
def random_drink():
drinks = ["café", "chá", "cerveja", "vinho", "água", "suco"]
return random.choice(drinks)
if __name__ == "__main__":
print(random_drink())
|