How do you make a code that allows you to randomly assign one of Americano, cafe latte, green grape ade, or strawberry smoothie? By Python
python
random.choice
https://docs.python.org/3/library/random.html?highlight=choice#random.choice
import random
Golagola = random.choice("Ah", "Kara", "Chung", "Daughter")
© 2024 OneMinuteCode. All rights reserved.