这样就OK
s=input() for i in range(len(s)): print(s[i]) print("循环正常结束")
最后一句话吗,直接加一个输出不就行了?
s = input() for i in s: print(f'循环进行:{i}') print(f'循环正常结束')