Answer the question
In order to leave comments, you need to log in
What is wrong with the for loop?
There is this code:
a = int(input())
b = input()
s = set()
for i in range(a):
if b not in s:
s.add(b)
print('НЕТ')
else:
print('ДА')
Answer the question
In order to leave comments, you need to log in
Excuse me, have you even run your script? Your script makes the first request (I don't know, obviously, the number of cycles for some reason), then it asks for a single word - and that's it. Displays "NO" once, of course, and then N times the word "YES", where N is the number you entered minus one. And nothing else, no waiting for the next input.
What did you really want to do? If you wanted to request a response in a loop, then for example like this:
a = int(input())
s = set()
for i in range(a):
b = input()
if b not in s:
s.add(b)
print('НЕТ')
else:
print('ДА')
Didn't find what you were looking for?
Ask your questionAsk a Question
731 491 924 answers to any question