gpt4 book ai didi

python-2.7 - python "%ds"的格式是什么意思?

转载 作者:行者123 更新时间:2023-12-05 01:02:38 29 4
gpt4 key购买 nike

以下代码中的“%ds”是什么意思?

theline = 'aaaaaeeebbbbbbbbccccccccddd'
baseformat = "5s 3x 8s 8s"
numremain = len(theline) - struct.calcsize(baseformat)
format = "%s %ds" % (baseformat, numremain)
s1, s2, s3, s4= struct.unpack(format, theline)

最佳答案

'%ds' 不是格式说明符。它是 '%d' 后跟 's':

>>> "%ds" % 6
6s

关于python-2.7 - python "%ds"的格式是什么意思?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/31332044/

29 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com