In Python:
Assuming the list:
mylist = [ 'Susie', 'Joe', 'Roger', 'Mary' ]
Write the Python statement(s) that will:
* ask the user to enter a name
* print out a message reporting if the name is or is not in the list
mylist = [ 'Susie', 'Joe', 'Roger', 'Mary' ]
name = input("Enter name: ")
if(name in mylist):
print(name,"is in the list")
else:
print(name, "is NOT in the list")


In Python: Assuming the list: mylist = [ 'Susie', 'Joe', 'Roger', 'Mary' ] Write the Python...