标签: python-3.x
有人可以向我解释为什么这个简单的代码不会打印变量'k'?
def simple_code(): k = msvcrt.getch() if k == chr(120): print("foo", k) else: sys.exit()