gpt4 book ai didi

python - 新手 Python : Print Function that Outputs NULL bytes

转载 作者:太空宇宙 更新时间:2023-11-04 07:03:04 26 4
gpt4 key购买 nike

我根本不会用 Python 编程,所以请原谅我的代码。我正在尝试编写一个在一定数量的字节后终止的打印函数。这是我到目前为止所做的:

   def print_stuff(stuff, size):
i = 0
data = ""
while i < size:
if stuff[i]=='\0':
data += " "
else:
data += stuff[i]
print data

但是当我尝试执行 printf_stuff(data, 5050) 时,Python 不打印任何内容并且似乎卡住了。我做错了什么?

最佳答案

您没有增加 i 中的值。

关于python - 新手 Python : Print Function that Outputs NULL bytes,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/11172584/

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