python分析作業提交情況,python作業提交

來源:互聯網
上載者:User

python分析作業提交情況,python作業提交

這次做一個比較貼近我實際的東西:python分析作業提交情況。

要求:

    將伺服器中交作業的學生(根據檔案的名字進行提取)和統計成績的表格中的學生的資訊進行比對,輸出所有沒有交作業的同學的資訊(學號和姓名),並輸出所交的作業中命名格式有問題的檔案名稱的資訊(如1627406012_E03....)。

提示:

提示:

1、根據伺服器檔案可以拿到所有交了作業的同學的資訊。



2、根據表格可以拿到所有上課學生的資訊


3、對1和2中的資訊進行比對,找出想要得到的資訊

注意:提取伺服器中學生交的作業的資訊的時候應該考慮到檔案格式不對的情況,所以提取資訊的時候要做好相關的處理,以避免異常。

     下面直接上程式(python3的版本):

#coding:utf-8 import os import xlrd   """ 此函數用於擷取dir檔案夾中的檔案的內容,dir中不能含有中文名 """ def getFilesInfo(dir):   fileNum=dir[len(dir)-2:len(dir)]  # 取得題目的編號   trueList=[]   errorList=[]   t=os.walk(dir)   for item in t:     for name in item[2]:       if len(name)!=18:         errorList.append(name)       else:         if name[13:15]==fileNum:           trueList.append(name[0:10])         else:           errorList.append(name)   return [trueList,errorList]  # 此函數用於讀取xml表格檔案中的內容 def readTableContent(fileName):   date=xlrd.open_workbook(fileName)   # sheet_name = date.sheet_names()[0]   stuList=[]   # 存放學號和姓名   try: # 擷取你要處理的XLS的第一張表     sh = date.sheet_by_index(0)   except:     print("出現問題")   for i in range(2,sh.nrows):     id=sh.row_values(i)[1]     name=sh.row_values(i)[2]     student=(id,name); # 存放學生的學號和姓名的元組     stuList.append(student)   return stuList   address="D://我的檔案/python作業批改/2016級老薑班級作業成績 2016-10-25.xls" submitStuList=getFilesInfo("D:\E01")  stuList=readTableContent(address)   # 存放學生的資訊的列表  notSubmitStudent=[]   # 存放沒有提交作業的學生的資訊 for student in stuList:   if student[0] not in submitStuList [0]:     notSubmitStudent.append(student) print("===================沒有交作業的人為=============") for student in notSubmitStudent:   print(student[0],student[1]) print("===================格式錯誤的檔案為=============") for error in submitStuList[1]:   print(error) 

       對於上面的程式中,用到了一個讀取表格的包xlrd,這個包需要自己進行下載,在pycharm中,直接進行如下步驟的下載:

1、首先進行如下操作:


2、然後點擊“+”號(由於我是提前下載好了的,所以下面的圖中有xlrd的包):


3、在輸入框中輸入包名並搜尋


4、完成安裝:


關於程式中使用到的os和xlrd的相關知識可以自行查閱相關的文檔,這裡不再進行詳細說明。

下面是py2.7版本的程式:

#coding:utf-8 import os import xlrd import xlwt   """ 此函數用於擷取dir檔案夾中的檔案的內容,dir中不能含有中文名 """ def getFilesInfo(dir):   fileNum=dir[len(dir)-2:len(dir)]  # 取得題目的編號   trueList=[]   errorList=[]   t=os.walk(dir)   for item in t:     for name in item[2]:       if len(name)!=18:         errorList.append(name)       else:         if name[13:15]==fileNum:           trueList.append(name[0:10])         else:           errorList.append(name)   return [trueList,errorList]  # 此函數用於讀取xml表格檔案中的內容 def readTableContent(fileName):   date=xlrd.open_workbook(fileName)   # sheet_name = date.sheet_names()[0]   stuList=[]   # 存放學號和姓名   try: # 擷取你要處理的XLS的第一張表     sh = date.sheet_by_index(0)   except:     print "出現問題"   for i in range(2,sh.nrows):     id=sh.row_values(i)[1].encode('utf-8')     name=sh.row_values(i)[2]     student=(id,name); # 存放學生的學號和姓名的元組     stuList.append(student)   return stuList   address=unicode("D://我的檔案/python作業批改/2016級老薑班級作業成績 2016-10-25.xls",'utf-8')  # 對於中文名的路徑要進行轉換 submitStuList=getFilesInfo("D:\E01")  stuList=readTableContent(address)   # 存放學生的資訊的列表  notSubmitStudent=[]   # 存放沒有提交作業的學生的資訊 for student in stuList:   if student[0] not in submitStuList [0]:     notSubmitStudent.append(student) print "===============沒有交作業的人為=============" for student in notSubmitStudent:   print student[0],student[1] print "===============格式錯誤的檔案為=============" for error in submitStuList[1]:   print error 

以上就是本文的全部內容,希望對大家的學習有所協助,也希望大家多多支援幫客之家。

相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.