wym3342732342

Results 1 issues of wym3342732342

``` def test(str): str= input("请输入一个字符串: ") if str!='ABC': raise NameError('无效输入,请重新输入...') try: test('ABC') except NameError as e: print(e) else: print("yes!")