#/usr/bin/pythonname=raw_input('please input your name:').strip()name_list=['Alex','Lucy','Lili']if (name in name_list): print 'your input is in the list!'else: print 'Sorry,not in the list!'