Answer:
Since I'm using the other two variables, the coding will be as follows;
duplicates = False
j = 0
while j < len(zipcode_list)-1 and not duplicates:
k = j + 1
while k < len(zipcode_list) and not duplicates:
if zipcode_list[k] == zipcode_list[j]:
duplicates = True
k += 1
j += 1