fork download
  1. # your code goes here
  2. import random
  3. fruits = [ "apple", "orange", "banana", "peach" ]
  4. dessert = random.choice(fruits)
  5. print(dessert)
Success #stdin #stdout 0.02s 36952KB
stdin
Standard input is empty
stdout
peach