我需要用Python打開一個文本文件並逐行閱讀這個文本文件,以便將它放入一個文本文件中。稍後我想將該數組中的每個內容寫入數據庫。 這是我到目前爲止的代碼:Python - 讀取TXT文件行 - >陣列
#!/usr/bin/python
# -*- coding: utf8 -*-
#importieren der Module
import MySQLdb
import sys
import re # regex
import codecs # utf8 support
# Datei file einlesen
names = []
fo = open("file.txt", "r")
print "Name of file:", fo.name
for line in fo:
line = line.strip()
fo.close()
我怎樣才能做到這一點? 將文本行插入數組的正確命令是什麼?
什麼文本文件是什麼樣子? – Ben
什麼是正確的命令做什麼? –
像這樣:EYD 5567 NEW LINE EYD 9867 - 將文本行插入數組的正確命令。 – user3820121