我的 python 未解之谜
found = False
while x and not found:
if match(x[0]):
print("Ni")
found = True
else:
x = x[1:]
if not found:
print("not found")
何解?
found = False
while x and not found:
if match(x[0]):
print("Ni")
found = True
else:
x = x[1:]
if not found:
print("not found")
何解?