如何在Python3中合并对象数据类型

时间:2019-03-01 01:47:35

标签: merge python-3.6

目前,我正在从Python 2.7迁移到3.6。我的某些程序需要进行修改以适应新版本。例如,这里有2个set文件,其中包含要使用vstack合并的对象数据集。为什么输出文件以b'0'b'1'b'2'开头,....如何避免以二进制模式读取数据?

         self.webView.cleanAllCookies()
         self.webView.removeCookies()

输出文件中的预期结果:

recent.dat = [WBGB 26 0300 005 04 5000 nan]
daily.dat = [0 1 2 3 4 5 6]

new = np.loadtxt("recent.dat", dtype='object')
old = np.loadtxt("daily.dat", dtype='object')
merge = np.vstack([old,new])

np.savetxt("daily-new.dat", merge, fmt="%s")

output daily-new.dat:

b'0' b'1' b'2' b'3' b'4' b'5' b'6'
b'WBGB' b'26' b'0300' b'005' b'04' b'5000' b'nan'

0 个答案:

没有答案