我正在处理一个项目,该文件从文件输入以下信息:
10015, John, Smith, 2, 3.01
10208, Patrick, Green, 1, 3.95
10334, Jane, Roberts, 4, 3.81
我需要做的是分割这些信息,分别存储每个值,然后根据用户的需要将其打印到屏幕或文件中。
应分割然后分配信息的功能是:
def fetchRecord( self ):
#Read the first line of the record.
line = self._inputFile.readline()
line = input.split( ', ' )
if line == "":
return None
#If there is another record, create a storage object and fill it
student = StudentRecord()
student.idNum = int( line[0] )
student.firstName = line[1]
student.lastName = line[2]
student.classCode = int( line[3] )
student.gpa = float( line[4] )
return student
我目前得到的错误如下:
builtins.ValueError: invalid literal for int() with base 10: '10015, John, Smith, 2, 3.01\n'
我正在调用的整个代码是:
class StudentFileReader:
#Create new student reader instance.
def __init__( self, inputSrc ):
self._inputSrc = inputSrc
self._inputFile = None
#Open a connection to the input file.
def open( self ):
self._inputFile = open( self._inputSrc, "r" )
#Close the connection to the input file.
def close( self ):
self._inputFile.close()
self._inputFile = None
#Extract all student records and store them in a list.
def fetchAll( self ):
theRecords = list()
student = self.fetchRecord()
while student != None:
theRecords.append( student )
student = self.fetchRecord()
return theRecords
#Extract the next stuent record from the file.
def fetchRecord( self ):
#Read the first line of the record.
line = self._inputFile.readline()
print ( line )
line = line.split( ',' )
print ( line )
if line == "":
return None
#If there is another record, create a storage object and fill it
student = StudentRecord()
student.idNum = int( line[0] )
student.firstName = line[1]
student.lastName = line[2]
student.classCode = int( line[3] )
student.gpa = float( line[4] )
return student
class StudentScreenWriter:
#Prints the student report to screen.
def printReport( theList ):
#The class names associated with the class codes.
classNames = ( None, "Freshman", "Sophomore", "Junior", "Senior" )
#Print the header.
print( "LIST OF STUDNETS".center(50) )
print( "" )
print( "%-5s %-25s %-10s %-4s" % ('ID', 'NAME', 'CLASS', 'GPA' ) )
print( "%5s %25s %10s %4s" % ('-' * 5, '-' * 25, '-' * 10, '-' * 4) )
#Print the body.
for record in theList:
print( "%5d %-25s %-10s %4.2f" % (record.idNum, record.lastName + ", " + record.firstName, classNames[record.classCode], record.gpa) )
#Add a footer.
print( "-" * 50 )
print( "Number of students:", len(theList) )
class StudentFileWriter:
#Prints the student report to file.
def printReport( theList, out ):
for record in theList
record.idNum = str(record.idNum)
record.lastName = str(record.lastName)
record.firstName = str(record.firstName)
record.classCode = str(record.classCode)
record.gpa = str(record.gpa)
out.write( record.idNum + ", " + record.lastName + ", " + record.firstName + ", " + record.classCode + ", " + record.gpa )
out.write( "\n" )
class StudentRecord:
def __init__( self ):
self.idNum = None
self.firstName = None
self.lastName = None
self.classCode = None
self.gpa = None
答案 0 :(得分:4)
不是你要找的答案,但你应该考虑
class StudentRecord:
def __init__(self,idNum=-1,firstName="unknown",lastName="Unknown",classCode=-1,gpa=-1):
self.idNum = idNum
self.firstName = firstName
self.lastName = lastName
self.classCode = classCode
self.gpa = gpa
#... The rest of your class
使用csv模块
import csv
with open("some.txt") as f:
reader = csv.reader(f)
for student_details in reader:
student = StudentRecord(*student_details)
没有csv模块
with open("some.txt") as f:
for line in f:
student_details = line.split(",")
student = StudentRecord(*student_details)
使用您的数据进行测试
class StudentRecord:
def __init__(self,idNum=-1,firstName="unknown",lastName="Unknown",classCode=-1,gpa=-1):
self.idNum = idNum
self.firstName = firstName
self.lastName = lastName
self.classCode = classCode
self.gpa = gpa
def __str__(self):
return "#%s:%s, %s | %s = %s"%(
self.idNum,self.lastName,self.firstName,
self.classCode,self.gpa
)
def __repr__(self):
return "<Student Record (%s %s)>"%(
self.firstName,self.lastName
)
with open("txt_data.txt") as f:
for line in f:
student_data = line.strip().split(", ")
student = StudentRecord(*student_data)
print "Student:",student
输出:
Student: #10015:Smith, John | 2 = 3.01
Student: #10208:Green, Patrick | 1 = 3.95
Student: #10334:Roberts, Jane | 4 = 3.81
答案 1 :(得分:2)
您需要更改行
line = input.split( ', ' )
到
line = line.split( ',' )
并在
之后移动它if line == "":
return None
input
在当前上下文中未定义。
答案 2 :(得分:0)
您可以考虑将其拆分为数据(使用您的数据)
>>> for line in f:
li1 = []
for part in line.split(','):
part = part.strip()
li1.append(part)
li2.append(li1)
>>> for i in li2:
print i
['10015', 'John', 'Smith', '2', '3.01']
['10208', 'Patrick', 'Green', '1', '3.95']
['10334', 'Jane', 'Roberts', '4', '3.81']
li1
和li2
是列表。 f
是输入文件,其中每一行都有记录/数据。
您现在将拥有该列表。您可以使用相同的方法来获取和处理名称,类代码,gpa等。