一 概念
1 Python replace() 方法把字符串中的 old(旧字符串) 替换成 new(新字符串),如果指定第三个参数max,则替换不超过 max 次。
2 用法:str.replace(old, new[, max])
二 源码
import numpy as np sample_list = [23, 22, 24, 25] new_array = np.array(sample_list) # Displaying the array file = open("sample.txt", "w+") # Saving the array in a text file content = str(new_array).replace(']','') content = str(content).replace('[','') file.write(content) file.close() # Displaying the contents of the text file file = open("sample.txt", "r") content = file.read() print("Array contents in sample.txt: ", content) file.close()
作者:虚生 出处:https://www.cnblogs.com/dylancao/ 以音频和传感器算法为核心的智能可穿戴产品解决方案提供商 ,提供可穿戴智能软硬件解决方案的设计,开发和咨询服务。 勾搭热线:邮箱:1173496664@qq.com weixin:18019245820 市场技术对接群:347609188 |