Welcome to ShenZhenJia Knowledge Sharing Community for programmer and developer-Open, Learning and Share
menu search
person
Welcome To Ask or Share your Answers For Others

Categories

Given an array of byte data one can produce concise hex output like this:

...
bbuf = [ 133, 53, 234, 241, 0xff, 127, 128,1 ]
print( ''.join(f'{bval:02x}:' for bval in bbuf) )
...

'85:35:ea:f1:ff:7f:80:01:'

One can also unpack it using the 'f' string '*' operator:

...
print(f'{*bbuf,}')
...

'(133, 53, 234, 241, 255, 127, 128, 1)'

Is there a way to unpack and format at the same time? Every syntactic variation I have tried has blown up. Thanks

question from:https://stackoverflow.com/questions/65848110/is-it-possible-to-iterate-and-format-at-the-same-time-with-a-python-f-string

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
thumb_up_alt 0 like thumb_down_alt 0 dislike
1.1k views
Welcome To Ask or Share your Answers For Others

1 Answer

Waitting for answers

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
thumb_up_alt 0 like thumb_down_alt 0 dislike
Welcome to ShenZhenJia Knowledge Sharing Community for programmer and developer-Open, Learning and Share
...