Is there anyone who thinks this is a bad idea for checking for odd numbers, and adding them to a list for later use?
nums_list = []
for number in range(1000): # This makes a list with a ton of uneven numbers.
eoro_check = (number-1)%2
if eoro_check == 0:
pass
else:
if number-1 == -1:
pass
else:
nums_list.append(number-1)
print nums_list