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.
binary = "\000\021\"\252\273\314". これは私の入力であり、私の関数はこの入力を受け取り、次のように出力します。
binary = "\000\021\"\252\273\314"
def do_print(string): print string do_print(binary)
しかし、この関数は意味不明なテキストを出力します。この問題を解決するにはどうすればよいですか?
おそらくあなたは文字列のを探していreprますか?
repr
def do_print(string): print(repr(string)) binary = "\000\021\"\252\273\314" do_print(binary)
収量
'\x00\x11"\xaa\xbb\xcc'