我是 Python 的新手(5 小时前才开始),但我有大约一年的 Java 经验。无论如何,我想做的第一个程序会创建一种名字/生日的“日志”。它提示用户输入条目数,然后是姓名和生日。它相当简单并且工作正常。每次您运行程序时,它都会将新的姓名/出生日期附加到文本文件中,以便以前的姓名/出生日期保持不变,而新的姓名/出生日期将出现在末尾。但是我希望能够按姓氏对这些条目进行排序。我成功地创建了一种按姓氏对它们进行排序的方法(同样它并不复杂)但是它只有在它是它自己的单独程序时才有效。如果我将代码放在原始程序的末尾,它将按预期排序,但不会对程序中的任何新条目进行排序,只有上次程序运行时的条目。我确实关闭了文件并在输入后在代码中重新打开它,但是它仍然无法识别所做的更改。因为这两个程序都可以正常运行,所以我需要做什么才能在同一个程序中实现这两段代码?或者,是否有办法从第一个程序运行第二个程序?
这是我的程序代码(BirthDates.txt 是存储条目的文本文件):
#IDLE 1.2.4
#Begin Entries
fileobja=open("BirthDates.txt","a")
dates=int(raw_input("Number of entries to add:"))
count=0
while count<dates:
fileobja.write("*NEW ENTRY*")
firstName=raw_input("Enter user's first name:")
lastName=raw_input("Enter user's last name:")
DOB=raw_input("Enter user's date of birth (MM/DD/YYYY):")
print lastName+","+firstName+"\n"+DOB
fileobja.write("\n")
fileobja.write(lastName+", "+firstName+"\n")
fileobja.write("("+DOB+")"+"\n"+"__________\n")
#print "dates=",dates
#print "count=",count
count=count+1
#print "count=",count
fileobja.close
#End Entries
这是第二个程序:
#Begin Sorter
fileobjr=open("Birthdates.txt","r")
fileList=[]
tempString=""
tempStringCount=0
for line in fileobjr:
tempString="".join(line[0:])
#print "tempString="+tempString
fileList.append(tempString)
tempStringCount=tempStringCount+1
fileobjr.close
fileListLength=len(fileList)
#print fileListLength
chunks=(fileListLength)/4
sortCount=1
tempList=[]
while sortCount<fileListLength:
templine=fileList[sortCount]+fileList[sortCount+1]
tempList.append(templine)
sortCount=sortCount+4
writeCount=0
tempList.sort()
fileobjw=open("BirthDates.txt","w")
while writeCount<chunks:
#print tempList[writeCount]
fileobjw.write("*NEW ENTRY*\n")
fileobjw.write(tempList[writeCount])
fileobjw.write("__________")
fileobjw.write("\n")
writeCount=writeCount+1
fileobjw.close
#End Sorter