potential_passengers = ['bob','john','sue','wendy','chris','bob','jen','wendy']
accepted_passengers = set()
for name in potential_passengers:
print('checking on {}...'.format(name))
if name not in accepted_passengers:
accepted_passengers.add(name)
print('welcome aboard, {}
you'll find a very extensive Flask tutorial at
http://blog.miguelgrinberg.com/post/the-flask-mega-tutorial-part-i-hello-world .
--
https://mail.python.org/mailman/listinfo/python-list
I recommend getting your hands on "Automate The Boring Stuff With Python" from
no starch press:
http://www.nostarch.com/automatestuff
I've not read it in its entirety, but it's very beginner-friendly and is
targeted at just the sort of processing you appear to be doing.
HTH,
Don
--
https://ma