Welcome toVigges Developer Community-Open, Learning,Share
Welcome To Ask or Share your Answers For Others

Categories

0 votes
1.1k views
in Technique[技术] by (71.8m points)

is it possible to iterate and format at the same time with a python 'f' string

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

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome To Ask or Share your Answers For Others

1 Answer

0 votes
by (71.8m points)
Waitting for answers

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome to Vigges Developer Community for programmer and developer-Open, Learning and Share
...