I have a question for Python

Asked 2 years ago, Updated 2 years ago, 18 views

There are milk, water, coffee, ice, syrup, fruit 1, and fruit 2 in the options. How do you make a successful code with Python?

python

2022-09-20 14:31

1 Answers

Select = #... Selected Functions
If Select in ("Milk", "Coffee", "Ice"):
   print("Good choice".")
else:
  print("Select incorrect")


2022-09-20 14:31

If you have any answers or tips


© 2024 OneMinuteCode. All rights reserved.