def distinct(y):
s = str(y)
for digit in s:
if s.count(digit) > 1:
return False
return True
f = open("s1.15.in", 'r')
year = int(f.readline()) + 1
while not distinct(year):
year = year + 1
print (year)
我收到关于“f”变量的语法错误,我不知道为什么。我对 Python 非常陌生。