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が初めてです。