开发者社区> 问答> 正文

完整值未使用Python写入文件

我的想法是将大量位写入文件(几乎64 * 800位)。它正在写入,但不是所有位。

控制台输出看起来像

[1。1. 0. ... 1. 0. 1.]

如果我减少要保存的位数,那么它将起作用。

我将在此处粘贴我的代码。此代码是对模拟到数字采样

y= function(x) #  Inside this function I am generating binary values and stored to y
################  y is in numpy.ndarray form
################  x is a sine wave

f=open('filename.txt',"w+")
f.write(str(y))  #we have to convert the numpy.ndarray to str. 
f.close()

当我打开filename.txt文件时,它将二进制值显示为

[1。1. 0. ... 1. 0. 1.]

与控制台中的相同。

请帮助我解决此问题。我需要将所有位(64 * 800)保存在文件中

问题来源:stackoverflow

展开
收起
is大龙 2020-03-24 09:41:43 354 0
1 条回答
写回答
取消 提交回答
  • 首先尝试将numpy数组转换为列表:

    y = function(x) #  Inside this function I am generating binary values and stored to y
    ################  y is in numpy.ndarray form
    ################  x is a sine wave
    y_list = y.tolist()  # Convert to python list
    # use the with context manager and you don't need to call .close() explicitly
    with open('filename.txt',"w+") as f:
        f.write(str(y_list))  #we have to convert the numpy.ndarray to a list and then  to str(y_list) which will write the entire bits. 
    

    回答来源:stackoverflow

    2020-03-24 09:41:50
    赞同 展开评论 打赏
问答分类:
问答地址:
问答排行榜
最热
最新

相关电子书

更多
From Python Scikit-Learn to Sc 立即下载
Data Pre-Processing in Python: 立即下载
双剑合璧-Python和大数据计算平台的结合 立即下载