Python Forum
How to understand the byte notation in python3
Thread Rating:
  • 0 Vote(s) - 0 Average
  • 1
  • 2
  • 3
  • 4
  • 5
How to understand the byte notation in python3
#4
I think the way you've done it above is fine. Bytes were the original str class in python before python3, so it defaults to printing the string representation. If you don't mind viewing it as hex then maybe:

>>> bstr = b'r\xd4M\xdb\xbd\xddp'
>>> bstr.hex(sep=",")
'72,d4,4d,db,bd,dd,70'
But your listcomp to show it as decimal is perfectly good.
Reply


Messages In This Thread
RE: How to understand the byte notation in python3 - by bowlofred - Feb-23-2021, 04:45 PM

Possibly Related Threads…
Thread Author Replies Views Last Post
  Forcing matplotlib to NOT use scientific notation when graphing sawtooth500 4 463 Mar-25-2024, 03:00 AM
Last Post: sawtooth500
  ''.join and start:stop:step notation for lists ringgeest11 2 2,485 Jun-24-2023, 06:09 AM
Last Post: ferdnyc
  issue with converting a scientific notation to standard notation thomaswfirth 4 1,451 Jun-06-2023, 06:06 PM
Last Post: rajeshgk
  notation MCL169 8 1,559 Apr-14-2023, 12:06 PM
Last Post: MCL169
  Issue in writing sql data into csv for decimal value to scientific notation mg24 8 3,168 Dec-06-2022, 11:09 AM
Last Post: mg24
  Graphics Formatting - X-axis Notation and Annotations - Matplotlib silviover_junior 0 1,831 Mar-17-2021, 01:19 PM
Last Post: silviover_junior
  'utf-8' codec can't decode byte 0xe2 in position 122031: invalid continuation byte tienttt 12 11,759 Sep-18-2020, 10:10 PM
Last Post: tienttt
  Simple question concerning python dot notation. miner_tom 1 1,945 Mar-24-2020, 05:20 PM
Last Post: buran
  'utf-8' codec can't decode byte 0xda in position 184: invalid continuation byte karkas 8 31,858 Feb-08-2020, 06:58 PM
Last Post: karkas
  Gnuradio python3 is not compatible python3 xmlrpc library How Can I Fix İt ? muratoznnnn 3 4,992 Nov-07-2019, 05:47 PM
Last Post: DeaD_EyE

Forum Jump:

User Panel Messages

Announcements
Announcement #1 8/1/2020
Announcement #2 8/2/2020
Announcement #3 8/6/2020