EddyGiusepe commited on
Commit
fd30e2d
·
1 Parent(s): dfd19a9

Script principal

Browse files
Files changed (1) hide show
  1. main.py +14 -0
main.py ADDED
@@ -0,0 +1,14 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ #! /usr/bin/env python3
2
+ """
3
+ Senior Data Scientist.: Dr. Eddy Giusepe Chirinos Isidro
4
+ """
5
+ import random
6
+
7
+
8
+ def random_drink():
9
+ drinks = ["café", "chá", "cerveja", "vinho", "água", "suco"]
10
+ return random.choice(drinks)
11
+
12
+
13
+ if __name__ == "__main__":
14
+ print(random_drink())