+ 2
Trying to get user input from a list?
have a list trying to create a program that takes user input if value is in the list.
1 Answer
+ 3
value = "something"
alist = ["nothing", "maybe", "something"]
if value in alist:
userIn = input("Enter something: ")