当我将我的pandas数据帧转换为csv时,一些数字会转为几个月。 Screenshot
只有在转换为csv时才会发生。
这是我的代码:
Hora Equipo_1 Marcador Equipo 2
0 19:30 UNAM 1-4 America
1 21:30 Tijuana 1-1 Monterrey
2 19:30 Tigres 2-0 Santos
3 21:30 Morelia 2-2 Toluca
4 19:00 America --- UNAM
5 21:00 Monterrey --- Tijuana
6 12:00 Toluca --- Morelia
7 18:00 Santos --- Tigres
编辑:打印如果我得到这个:
Hora Equipo_1 Marcador Equipo 2
0 19:30 UNAM 4-Jan America
1 21:30 Tijuana 1-Jan Monterrey
2 19:30 Tigres Feb-00 Santos
3 21:30 Morelia 2-Feb Toluca
4 19:00 America --- UNAM
5 21:00 Monterrey --- Tijuana
6 12:00 Toluca --- Morelia
7 18:00 Santos --- Tigres
在csv中,它显示了这个:
h1=et.parse("C:\\Users\\harsh\\OneDrive\\Desktop\\DataSets\\zika.xml")
h3=h1.getroot()
h2=h1.findall('PubmedArticle')
for child in h2:
for node in child.getiterator():
if node.tag=="AbstractText":
h3=node.text
print(h3)
file=open("C:\\Users\\harsh\\OneDrive\\Desktop\\DataSets\\Extracted.txt","w")
file.write(h3)
file.close()
编辑2:解决了,与我混在一起很好:P
答案 0 :(得分:0)
如何打开CSV以查看其中的数据?如果您在Excel中打开,它可能会将(1-4)的实际CSV数据转换为(4月1日)。你试过在文本编辑器中打开吗?