Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
Pythonで「\ x08」を「\ x08」として印刷するにはどうすればよいですか? コマンドを入力すると
print '\x08'
出力は代わりに空白です
\x08
'\x08'次のようにして、(バックスペース文字で)エスケープすることができます。
'\x08'
print '\\x08'