OK, thanks!
--
http://mail.python.org/mailman/listinfo/python-list
"orangeDinosaur" <[EMAIL PROTECTED]> writes:
> Here's a section of code:
>
> for x in occupants:
> if x not in uniqueUsers and not in staff:
> uniqueUsers.append(x)
> elif x in staff and not in uniqueStaff:
> uniqueStaff.append(x)
>
> When I try to im
orangeDinosaur wrote:
> Here's a section of code:
>
> for x in occupants:
> if x not in uniqueUsers and not in staff:
> uniqueUsers.append(x)
> elif x in staff and not in uniqueStaff:
> uniqueStaff.append(x)
>
> When I try to import the module with th
orangeDinosaur <[EMAIL PROTECTED]> wrote:
> Here's a section of code:
>
> for x in occupants:
> if x not in uniqueUsers and not in staff: uniqueUsers.append(x)
> elif x in staff and not in uniqueStaff: uniqueStaff.append(x)
>
> When I try to import the module with the function definition th
Try:
for x in occupants:
if x not in uniqueUsers and x not in staff:
uniqueUsers.append(x)
elif x in staff and x not in uniqueStaff:
uniqueStaff.append(x)
--
http://mail.python.org/mailman/listinfo/python-list
Here's a section of code:
for x in occupants:
if x not in uniqueUsers and not in staff:
uniqueUsers.append(x)
elif x in staff and not in uniqueStaff:
uniqueStaff.append(x)
When I try to import the module with the function definition that
contains