Groups | Search | Server Info | Keyboard shortcuts | Login | Register [http] [https] [nntp] [nntps]


Groups > comp.lang.python > #98667

How to get 'od' run?

Newsgroups comp.lang.python
Date 2015-11-11 19:04 -0800
Message-ID <24ed2ddb-aaea-455e-bf45-10e1cd8e8376@googlegroups.com> (permalink)
Subject How to get 'od' run?
From fl <rxjwg98@gmail.com>

Show all headers | View raw


Hi,

I am learning python. I see a previous post has such code:





   >>> data = '"binääridataa"\n'.encode('utf-8') 
   >>> f = open('roska.txt', 'wb') 
   >>> f.write(data) 
   17 
   >>> f.close() 

The .encode methods produced a bytestring, which Python likes to display 
as ASCII characters where it can and in hexadecimal where it cannot: 

   >>> data 
   b'"bin\xc3\xa4\xc3\xa4ridataa"\n' 

An "octal dump" in characters (where ASCII, otherwise apparently octal) 
and the corresponding hexadecimal shows that it is, indeed, these bytes 
that ended up in the file: 

$ od -t cx1 roska.txt 


When I run the above line with python 2.7, it does not recognize 'od'.

Is it from a package? Or some internal function?

Thanks,

Back to comp.lang.python | Previous | NextNext in thread | Find similar | Unroll thread


Thread

How to get 'od' run? fl <rxjwg98@gmail.com> - 2015-11-11 19:04 -0800
  Re: How to get 'od' run? Michael Torrie <torriem@gmail.com> - 2015-11-11 20:21 -0700
  Re: How to get 'od' run? Michael Torrie <torriem@gmail.com> - 2015-11-11 20:34 -0700

csiph-web