我知道这不起作用,并且会产生错误,但无论如何我都会问它。
exec(chr(8))
不会从 shell 中删除字符...
chr(8)
是 ascii 中的退格键。所以很自然,我认为它会从 shell 中删除一个字符,比如
>>> exec(chr(8))
会回来
>>> exec(chr(8) # Missing a parenthesis.
我知道这不起作用,并且会产生错误,但无论如何我都会问它。
exec(chr(8))
不会从 shell 中删除字符...
chr(8)
是 ascii 中的退格键。所以很自然,我认为它会从 shell 中删除一个字符,比如
>>> exec(chr(8))
会回来
>>> exec(chr(8) # Missing a parenthesis.