python pandas爬取网页成绩表格,计算各个类别学分

本文介绍了如何使用Python的pandas库从网页抓取成绩表格,并详细展示了计算各个类别学分的过程,包括编写程序代码及运行的部分结果。

一、以下是个人成绩表格


二、下面是我的程序:

# -- coding: utf-8 --
import pandas as pd
import csv

def credit_points_sum(df,title):
    df.to_csv('E:\\scores_'+title+'.csv',  encoding='utf_8_sig')  # index=False,header=False
    sum=0
    for i in range(df.shape[0]):
        sum+=float(df.iloc[i][4])
    print(title+':'+str(sum))


url='E://scores.html'
tb=pd.read_html(url)[1]
tb=tb[1:70]
print(tb.iloc[0][6])
tb[4].astype(float)
print(tb)

# 总学分
credit_points_sum(tb, u'总学分')

# 专选
tb_zhuanXuan=tb[tb[6]=='专选']
credit_points_sum(tb_zhuanXuan,'专选')


# 必修
tb_biXiu=tb[tb[6]=='必修']
credit_points_sum(tb_biXiu,'必修')


# 素质
tb_suZhi=tb[tb[6]=='素质']
credit_points_sum(tb_suZhi,'素质')

# 专选非限
tb_suZhi=tb[tb[6]=='专选(非限)']
credit_points_sum(tb_suZhi,'专选(非限)')


三、下面是运行的部分结果


四、下面是个人下载下来的静态html


<html>
<title>学生个人总成绩查询</title>
<head>
<META http-equiv=Content-Type content="text/html; charset=gb2312">
<LINK href="/include/style.css" type=text/css rel=stylesheet>
</head>
<body >

<center>
<table BORDER="0" cellspacing="0"   height="80%">
<tr>
<td>
</td></tr>
<tr>
<td align="center">


<p><B><font size="3">重庆大学学生成绩单</font></B></p>
                                                                                   

<p><B>学号:</B>20161590  <B>姓名:</B>谭植尹  <B>专业:</B>软件工程 <B>GPA:</B>3.22</B> </p>
<table BORDER="1" cellspacing="0" cellpadding="2" bordercolorlight="#000000"
bordercolordark="#FFFFFF" bordercolor="#FFFFFF" width="877">
  <tr>
    <td width="32"><b>序号</b></td>
    <td width="84"><b>课程编码</b></td>
    <td width="210"><b>课程名称</b></td>
    <td width="43"><b>成绩</b></td>
    <td width="43"><b>学分</b></td>
    <td width="53"><b>选修</b></td>
    <td width="52"><b>类别</b></td>
    <td width="60"><b>教师</b></td>
    <td width="54"><b>考别</b></td>
    <td width="38"><b>备注</b></td>
    <td width="140"><b>时间</b></td>
  </tr>

  <tr>

    <td align="center" VALIGN="center" width="32" height="23"> 
      1
    </td>
    <td align="center"  VALIGN="center" width="84" height="23"> 
      SE31029
    </td>
    <td VALIGN="center" width="210" height="23"> 
      .NET框架及C#程序设计
    </td>
    <td  align="center" VALIGN="center" width="43" height="23">
	76
    </td>
    <td  align="center" VALIGN="center" width="43" height="23"> 
      2
    </td>
    <td  align="center" VALIGN="center" width="53" height="23"> 
      
	  正常
      
    </td>
    <td  align="center" VALIGN="center" width="52" height="23"> 
      
      专选 
      
    </td>
    <td align="center"  VALIGN="center" width="60" height="23"> 
       祝伟华
    </td>
    <td align="center"  VALIGN="center" width="54" height="23"> 
	正考
    </td>
    <td align="center"  VALIGN="center" width="38" height="23"> 
	  正
    </td>
    <td align="center"  VALIGN="center" width="140" height="23"> 
	  2018-12-1
    </td>
  </tr>

  <tr>

    <td align="center" VALIGN="center" width="32" height="23"> 
      2
    </td>
    <td align="center"  VALIGN="center" width="84" height="23"> 
      SE31209
    </td>
    <td VALIGN="center" width="210" height="23"> 
      DirectX图形程序设计
    </td>
    <td  align="center" VALIGN="center" width="43" height="23">
	81
    </td>
    <td  align="center" VALIGN="center" width="43" height="23"> 
      2
    </td>
    <td  align="center" VALIGN="center" width="53" height="23"> 
      
	  正常
      
    </td>
    <td  align="center" VALIGN="center" width="52" height="23"> 
      
      专选 
      
    </td>
    <td align="center"  VALIGN="center" width="60" height="23"> 
       曾骏
    </td>
    <td align="center"  VALIGN="center" width="54" height="23"> 
	正考
    </td>
    <td align="center"  VALIGN="center" width="38" height="23"> 
	  正
    </td>
    <td align="center"  VALIGN="center" width="140" height="23"> 
	  2019-1-10
    </td>
  </tr>

  <tr>

    <td align="center" VALIGN="center" width="32" height="23"> 
      3
    </td>
    <td align="center"  VALIGN="center" width="84" height="23"> 
      SE21023
    </td>
    <td VALIGN="center" width="210" height="23"> 
      Java EE程序设计
    </td>
    <td  align="center" VALIGN="center" width="43" height="23">
	82
    </td>
    <td  align="center" VALIGN="center" width="43" height="23"> 
      2
    </td>
    <td  align="center" VALIGN="center" width="53" height="23"> 
      
	  正常
      
    </td>
    <td  align="center" VALIGN="center" width="52" height="23"> 
      
      专选 
      
    </td>
    <td align="center"  VALIGN="center" width="60" height="23"> 
       黄晟
    </td>
    <td align="center"  VALIGN="center" width="54" height="23"> 
	正考
    </td>
    <td align="center"  VALIGN="center" width="38" height="23"> 
	  正
    </td>
    <td align="center"  VALIGN="center" width="140" height="23"> 
	  2018-7-16
    </td>
  </tr>

  <tr>

    <td align="center" VALIGN="center" width="32" height="23"> 
      4
    </td>
    <td align="center"  VALIGN="center" width="84" height="23"> 
      SE31107
    </td>
    <td VALIGN="center" width="210" height="23"> 
      Web开发技术
    </td>
    <td  align="center" VALIGN="center" width="43" height="23">
	95
    </td>
    <td  align="center" VALIGN="center" width="43" height="23"> 
      2
    </td>
    <td  align="center" VALIGN="center" width="53" height="23"> 
      
	  正常
      
    </td>
    <td  align="center" VALIGN="center" width="52" height="23"> 
      
      必修 
      
    </td>
    <td align="center"  VALIGN="center" width="60" height="23"> 
       王成良
    </td>
    <td align="center"  VALIGN="center" width="54" height="23"> 
	正考
    </td>
    <td align="center"  VALIGN="center" width="38" height="23"> 
	  正
    </td>
    <td align="center"  VALIGN="center" width="140" height="23"> 
	  2019-1-18
    </td>
  </tr>

  <tr>

    <td align="center" VALIGN="center" width="32" height="23"> 
      5
    </td>
    <td align="center"  VALIGN="center" width="84" height="23"> 
      SE21021
    </td>
    <td VALIGN="center" width="210" height="23"> 
      操作系统原理
    </td>
    <td  align="center" VALIGN="center" width="43" height="23">
	96
    </td>
    <td  align="center" VALIGN="center" width="43" height="23"> 
      3
    </td>
    <td  align="center" VALIGN="center" width="53" height="23"> 
      
	  正常
      
    </td>
    <td  align="center" VALIGN="center" width="52" height="23"> 
      
      必修 
      
    </td>
    <td align="center"  VALIGN="center" width="60" height="23"> 
       洪明坚
    </td>
    <td align="center"  VALIGN="center" width="54" height="23"> 
	正考
    </td>
    <td align="center"  VALIGN="center" width="38" height="23"> 
	  正
    </td>
    <td align="center"  VALIGN="center" width="140" height="23"> 
	  2018-7-15
    </td>
  </tr>

  <tr>

    <td align="center" VALIGN="center" width="32" height="23"> 
      6
    </td>
    <td align="center"  VALIGN="center" width="84" height="23"> 
      SE11005
    </td>
    <td VALIGN="center" width="210" height="23"> 
      程序设计基础
    </td>
    <td  align="center" VALIGN="center" width="43" height="23">
	84
    </td>
    <td  align="center" VALIGN="center" width="43" height="23"> 
      4
    </td>
    <td  align="center" VALIGN="center" width="53" height="23"> 
      
	  正常
      
    </td>
    <td  align="center" VALIGN="center" width="52" height="23"> 
      
      必修 
      
    </td>
    <td align="center"  VALIGN="center" width="60" height="23"> 
       黄晟
    </td>
    <td align="center"  VALIGN="center" width="54" height="23"> 
	正考
    </td>
    <td align="center"  VALIGN="center" width="38" height="23"> 
	  正
    </td>
    <td align="center"  VALIGN="center" width="140" height="23"> 
	  2017-1-17
    </td>
  </tr>

  <tr>

    <td align="center" VALIGN="center" width="32" height="23"> 
      7
    </td>
    <td align="center"  VALIGN="center" width="84" height="23"> 
      SE24061
    </td>
    <td VALIGN="center" width="210" height="23"> 
      程序设计实训
    </td>
    <td  align="center" VALIGN="center" width="43" height="23">
	80
    </td>
    <td  align="center" VALIGN="center" width="43" height="23"> 
      3
    </td>
    <td  align="center" VALIGN="center" width="53" height="23"> 
      
	  正常
      
    </td>
    <td  align="center" VALIGN="center" width="52" height="23"> 
      
      必修 
      
    </td>
    <td align="center"  VALIGN="center" width="60" height="23"> 
       雷跃明
    </td>
    <td align="center"  VALIGN="center" width="54" height="23"> 
	正考
    </td>
    <td align="center"  VALIGN="center" width="38" height="23"> 
	  正
    </td>
    <td align="center"  VALIGN="center" width="140" height="23"> 
	  2017-9-11
    </td>
  </tr>

  <tr>

    <td align="center" VALIGN="center" width="32" height="23"> 
      8
    </td>
    <td align="center"  VALIGN="center" width="84" height="23"> 
      HG00046
    </td>
    <td VALIGN="center" width="210" height="23"> 
      大学国文(上)
    </td>
    <td  align="center" VALIGN="center" width="43" height="23">
	82
    </td>
    <td  align="center" VALIGN="center" width="43" height="23"> 
      2
    </td>
    <td  align="center" VALIGN="center" width="53" height="23"> 
      
	  正常
      
    </td>
    <td  align="center" VALIGN="center" width="52" height="23"> 
      
      素质 
      
    </td>
    <td align="center"  VALIGN="center" width="60" height="23"> 
       彭磊
    </td>
    <td align="center"  VALIGN="center" width="54" height="23"> 
	正考
    </td>
    <td align="center"  VALIGN="center" width="38" height="23"> 
	  正
    </td>
    <td align="center"  VALIGN="center" width="140" height="23"> 
	  2016-12-30
    </td>
  </tr>

  <tr>

    <td align="center" VALIGN="center" width="32" height="23"> 
      9
    </td>
    <td align="center"  VALIGN="center" width="84" height="23"> 
      HG00047
    </td>
    <td VALIGN="center" width="210" height="23"> 
      大学国文(下)
    </td>
    <td  align="center" VALIGN="center" width="43" height="23">
	81
    </td>
    <td  align="center" VALIGN="center" width="43" height="23"> 
      2
    </td>
    <td  align="center" VALIGN="center" width="53" height="23"> 
      
	  正常
      
    </td>
    <td  align="center" VALIGN="center" width="52" height="23"> 
      
      素质 
      
    </td>
    <td align="center"  VALIGN="center" width="60" height="23"> 
       刘扬
    </td>
    <td align="center"  VALIGN="center" width="54" height="23"> 
	正考
    </td>
    <td align="center"  VALIGN="center" width="38" height="23"> 
	  正
    </td>
    <td align="center"  VALIGN="center" width="140" height="23"> 
	  2017-6-20
    </td>
  </tr>

  <tr>

    <td align="center" VALIGN="center" width="32" height="23"> 
      10
    </td>
    <td align="center"  VALIGN="center" width="84" height="23"> 
      PYS10013
    </td>
    <td VALIGN="center" width="210" height="23"> 
      大学物理Ⅱ-1
    </td>
    <td  align="center" VALIGN="center" width="43" height="23">
	76
    </td>
    <td  align="center" VALIGN="center" width="43" height="23"> 
      3.5
    </td>
    <td  align="center" VALIGN="center" width="53" height="23"> 
      
	  正常
      
    </td>
    <td  align="center" VALIGN="center" width="52" height="23"> 
      
      必修 
      
    </td>
    <td align="center"  VALIGN="center" width="60" height="23"> 
       苏荀
    </td>
    <td align="center"  VALIGN="center" width="54" height="23"> 
	正考
    </td>
    <td align="center"  VALIGN="center" width="38" height="23"> 
	  正
    </td>
    <td align="center"  VALIGN="center" width="140" height="23"> 
	  2017-7-7
    </td>
  </tr>

  <tr>

    <td align="center" VALIGN="center" width="32" height="23"> 
      11
    </td>
    <td align="center"  VALIGN="center" width="84" height="23"> 
      PYS12010
    </td>
    <td VALIGN="center" width="210" height="23"> 
      大学物理实验
    </td>
    <td  align="center" VALIGN="center" width="43" height="23">
	77
    </td>
    <td  align="center" VALIGN="center" width="43" height="23"> 
      1.5
    </td>
    <td  align="center" VALIGN="center" width="53" height="23"> 
      
	  正常
      
    </td>
    <td  align="center" VALIGN="center" width="52" height="23"> 
      
      必修 
      
    </td>
    <td align="center"  VALIGN="center" width="60" height="23"> 
       余沛
    </td>
    <td align="center"  VALIGN="center" width="54" height="23"> 
	正考
    </td>
    <td align="center"  VALIGN="center" width="38" height="23"> 
	  正
    </td>
    <td align="center"  VALIGN="center" width="140" height="23"> 
	  2017-7-7
    </td>
  </tr>

  <tr>

    <td align="center" VALIGN="center" width="32" height="23"> 
      12
    </td>
    <td align="center"  VALIGN="center" width="84" height="23"> 
      5200080
    </td>
    <td VALIGN="center" width="210" height="23"> 
      大学英语(国家四级)
    </td>
    <td  align="center" VALIGN="center" width="43" height="23">
	453
    </td>
    <td  align="center" VALIGN="center" width="43" height="23"> 
      1
    </td>
    <td  align="center" VALIGN="center" width="53" height="23"> 
      
	  正常
      
    </td>
    <td  align="center" VALIGN="center" width="52" height="23"> 
      
      任选 
      
    </td>
    <td align="center"  VALIGN="center" width="60" height="23"> 
       国家四级
    </td>
    <td align="center"  VALIGN="center" width="54" height="23"> 
	正考
    </td>
    <td align="center"  VALIGN="center" width="38" height="23"> 
	  正
    </td>
    <td align="center"  VALIGN="center" width="140" height="23"> 
	  2017-9-12
    </td>
  </tr>

  <tr>

    <td align="center" VALIGN="center" width="32" height="23"> 
      13
    </td>
    <td align="center"  VALIGN="center" width="84" height="23"> 
      SE31207
    </td>
    <td VALIGN="center" width="210" height="23"> 
      多媒体技术
    </td>
    <td  align="center" VALIGN="center" width="43" height="23">
	79
    </td>
    <td  align="center" VALIGN="center" width="43" height="23"> 
      2
    </td>
    <td  align="center" VALIGN="center" width="53" height="23"> 
      
	  正常
      
    </td>
    <td  align="center" VALIGN="center" width="52" height="23"> 
      
      专选 
      
    </td>
    <td align="center"  VALIGN="center" width="60" height="23"> 
       桑军
    </td>
    <td align="center"  VALIGN="center" width="54" height="23"> 
	正考
    </td>
    <td align="center"  VALIGN="center" width="38" height="23"> 
	  正
    </td>
    <td align="center"  VALIGN="center" width="140" height="23"> 
	  2019-1-17
    </td>
  </tr>

  <tr>

    <td align="center" VALIGN="center" width="32" height="23"> 
      14
    </td>
    <td align="center"  VALIGN="center" width="84" height="23"> 
      SSG00038
    </td>
    <td VALIGN="center" width="210" height="23"> 
      法律与文学
    </td>
    <td  align="center" VALIGN="center" width="43" height="23">
	92
    </td>
    <td  align="center" VALIGN="center" width="43" height="23"> 
      2
    </td>
    <td  align="center" VALIGN="center" width="53" height="23"> 
      
	  正常
      
    </td>
    <td  align="center" VALIGN="center" width="52" height="23"> 
      
      素质 
      
    </td>
    <td align="center"  VALIGN="center" width="60" height="23"> 
       颜丽媛
    </td>
    <td align="center"  VALIGN="center" width="54" height="23"> 
	正考
    </td>
    <td align="center"  VALIGN="center" width="38" height="23"> 
	  正
    </td>
    <td align="center"  VALIGN="center" width="140" height="23"> 
	  2018-7-12
    </td>
  </tr>

  <tr>

    <td align="center" VALIGN="center" width="32" height="23"> 
      15
    </td>
    <td align="center"  VALIGN="center" width="84" height="23"> 
      MTH20041
    </td>
    <td VALIGN="center" width="210" height="23"> 
      概率论与数理统计Ⅰ
    </td>
    <td  align="center" VALIGN="center" width="43" height="23">
	86
    </td>
    <td  align="center" VALIGN="center" width="43" height="23"> 
      3
    </td>
    <td  align="center" VALIGN="center" width="53" height="23"> 
      
	  正常
      
    </td>
    <td  align="center" VALIGN="center" width="52" height="23"> 
      
      必修 
      
    </td>
    <td align="center"  VALIGN="center" width="60" height="23"> 
       胥斌
    </td>
    <td align="center"  VALIGN="center" width="54" height="23"> 
	正考
    </td>
    <td align="center"  VALIGN="center" width="38" height="23"> 
	  正
    </td>
    <td align="center"  VALIGN="center" width="140" height="23"> 
	  2017-12-14
    </td>
  </tr>

  <tr>

    <td align="center" VALIGN="center" width="32" height="23"> 
      16
    </td>
    <td align="center"  VALIGN="center" width="84" height="23"> 
      MTH10012
    </td>
    <td VALIGN="center" width="210" height="23"> 
      高等数学1(电子信息类)
    </td>
    <td  align="center" VALIGN="center" width="43" height="23">
	71
    </td>
    <td  align="center" VALIGN="center" width="43" height="23"> 
      5
    </td>
    <td  align="center" VALIGN="center" width="53" height="23"> 
      
	  正常
      
    </td>
    <td  align="center" VALIGN="center" width="52" height="23"> 
      
      必修 
      
    </td>
    <td align="center"  VALIGN="center" width="60" height="23"> 
       杨向东
    </td>
    <td align="center"  VALIGN="center" width="54" height="23"> 
	正考
    </td>
    <td align="center"  VALIGN="center" width="38" height="23"> 
	  正
    </td>
    <td align="center"  VALIGN="center" width="140" height="23"> 
	  2017-1-14
    </td>
  </tr>

  <tr>

    <td align="center" VALIGN="center" width="32" height="23"> 
      17
    </td>
    <td align="center"  VALIGN="center" width="84" height="23"> 
      MTH10022
    </td>
    <td VALIGN="center" width="210" height="23"> 
      高等数学2(电子信息类)
    </td>
    <td  align="center" VALIGN="center" width="43" height="23">
	62
    </td>
    <td  align="center" VALIGN="center" width="43" height="23"> 
      6
    </td>
    <td  align="center" VALIGN="center" width="53" height="23"> 
      
	  正常
      
    </td>
    <td  align="center" VALIGN="center" width="52" height="23"> 
      
      必修 
      
    </td>
    <td align="center"  VALIGN="center" width="60" height="23"> 
       杨向东
    </td>
    <td align="center"  VALIGN="center" width="54" height="23"> 
	正考
    </td>
    <td align="center"  VALIGN="center" width="38" height="23"> 
	  正
    </td>
    <td align="center"  VALIGN="center" width="140" height="23"> 
	  2017-7-8
    </td>
  </tr>

  <tr>

    <td align="center" VALIGN="center" width="32" height="23"> 
      18
    </td>
    <td align="center"  VALIGN="center" width="84" height="23"> 
      SE21015
    </td>
    <td VALIGN="center" width="210" height="23"> 
      汇编语言程序设计
    </td>
    <td  align="center" VALIGN="center" width="43" height="23">
	87
    </td>
    <td  align="center" VALIGN="center" width="43" height="23"> 
      2
    </td>
    <td  align="center" VALIGN="center" width="53" height="23"> 
      
	  正常
      
    </td>
    <td  align="center" VALIGN="center" width="52" height="23"> 
      
      专选 
      
    </td>
    <td align="center"  VALIGN="center" width="60" height="23"> 
       陈蜀宇
    </td>
    <td align="center"  VALIGN="center" width="54" height="23"> 
	正考
    </td>
    <td align="center"  VALIGN="center" width="38" height="23"> 
	  正
    </td>
    <td align="center"  VALIGN="center" width="140" height="23"> 
	  2018-1-26
    </td>
  </tr>

  <tr>

    <td align="center" VALIGN="center" width="32" height="23"> 
      19
    </td>
    <td align="center"  VALIGN="center" width="84" height="23"> 
      SE31313
    </td>
    <td VALIGN="center" width="210" height="23"> 
      机器学习与模式识别
    </td>
    <td  align="center" VALIGN="center" width="43" height="23">
	86
    </td>
    <td  align="center" VALIGN="center" width="43" height="23"> 
      2
    </td>
    <td  align="center" VALIGN="center" width="53" height="23"> 
      
	  正常
      
    </td>
    <td  align="center" VALIGN="center" width="52" height="23"> 
      
      专选 
      
    </td>
    <td align="center"  VALIGN="center" width="60" height="23"> 
       陈飞宇
    </td>
    <td align="center"  VALIGN="center" width="54" height="23"> 
	正考
    </td>
    <td align="center"  VALIGN="center" width="38" height="23"> 
	  正
    </td>
    <td align="center"  VALIGN="center" width="140" height="23"> 
	  2019-1-17
    </td>
  </tr>

  <tr>

    <td align="center" VALIGN="center" width="32" height="23"> 
      20
    </td>
    <td align="center"  VALIGN="center" width="84" height="23"> 
      SE31027
    </td>
    <td VALIGN="center" width="210" height="23"> 
      计算机图形学
    </td>
    <td  align="center" VALIGN="center" width="43" height="23">
	86
    </td>
    <td  align="center" VALIGN="center" width="43" height="23"> 
      3
    </td>
    <td  align="center" VALIGN="center" width="53" height="23"> 
      
	  正常
      
    </td>
    <td  align="center" VALIGN="center" width="52" height="23"> 
      
      专选 
      
    </td>
    <td align="center"  VALIGN="center" width="60" height="23"> 
       杨梦宁
    </td>
    <td align="center"  VALIGN="center" width="54" height="23"> 
	正考
    </td>
    <td align="center"  VALIGN="center" width="38" height="23"> 
	  正
    </td>
    <td align="center"  VALIGN="center" width="140" height="23"> 
	  2019-1-17
    </td>
  </tr>

  <tr>

    <td align="center" VALIGN="center" width="32" height="23"> 
      21
    </td>
    <td align="center"  VALIGN="center" width="84" height="23"> 
      SE21019
    </td>
    <td VALIGN="center" width="210" height="23"> 
      计算机网络与通信
    </td>
    <td  align="center" VALIGN="center" width="43" height="23">
	87
    </td>
    <td  align="center" VALIGN="center" width="43" height="23"> 
      3
    </td>
    <td  align="center" VALIGN="center" width="53" height="23"> 
      
	  正常
      
    </td>
    <td  align="center" VALIGN="center" width="52" height="23"> 
      
      必修 
      
    </td>
    <td align="center"  VALIGN="center" width="60" height="23"> 
       胡海波
    </td>
    <td align="center"  VALIGN="center" width="54" height="23"> 
	正考
    </td>
    <td align="center"  VALIGN="center" width="38" height="23"> 
	  正
    </td>
    <td align="center"  VALIGN="center" width="140" height="23"> 
	  2018-7-17
    </td>
  </tr>

  <tr>

    <td align="center" VALIGN="center" width="32" height="23"> 
      22
    </td>
    <td align="center"  VALIGN="center" width="84" height="23"> 
      SE21011
    </td>
    <td VALIGN="center" width="210" height="23"> 
      计算机组成与结构
    </td>
    <td  align="center" VALIGN="center" width="43" height="23">
	78
    </td>
    <td  align="center" VALIGN="center" width="43" height="23"> 
      3
    </td>
    <td  align="center" VALIGN="center" width="53" height="23"> 
      
	  正常
      
    </td>
    <td  align="center" VALIGN="center" width="52" height="23"> 
      
      必修 
      
    </td>
    <td align="center"  VALIGN="center" width="60" height="23"> 
       杨正益
    </td>
    <td align="center"  VALIGN="center" width="54" height="23"> 
	正考
    </td>
    <td align="center"  VALIGN="center" width="38" height="23"> 
	  正
    </td>
    <td align="center"  VALIGN="center" width="140" height="23"> 
	  2018-1-17
    </td>
  </tr>

  <tr>

    <td align="center" VALIGN="center" width="32" height="23"> 
      23
    </td>
    <td align="center"  VALIGN="center" width="84" height="23"> 
      MET11000
    </td>
    <td VALIGN="center" width="210" height="23"> 
      军事课(含军事训练、军事理论)
    </td>
    <td  align="center" VALIGN="center" width="43" height="23">
	88
    </td>
    <td  align="center" VALIGN="center" width="43" height="23"> 
      2
    </td>
    <td  align="center" VALIGN="center" width="53" height="23"> 
      
	  正常
      
    </td>
    <td  align="center" VALIGN="center" width="52" height="23"> 
      
      必修 
      
    </td>
    <td align="center"  VALIGN="center" width="60" height="23"> 
       朱云清
    </td>
    <td align="center"  VALIGN="center" width="54" height="23"> 
	正考
    </td>
    <td align="center"  VALIGN="center" width="38" height="23"> 
	  正
    </td>
    <td align="center"  VALIGN="center" width="140" height="23"> 
	  2016-11-18
    </td>
  </tr>

  <tr>

    <td align="center" VALIGN="center" width="32" height="23"> 
      24
    </td>
    <td align="center"  VALIGN="center" width="84" height="23"> 
      SE10009
    </td>
    <td VALIGN="center" width="210" height="23"> 
      离散数学
    </td>
    <td  align="center" VALIGN="center" width="43" height="23">
	77
    </td>
    <td  align="center" VALIGN="center" width="43" height="23"> 
      3
    </td>
    <td  align="center" VALIGN="center" width="53" height="23"> 
      
	  正常
      
    </td>
    <td  align="center" VALIGN="center" width="52" height="23"> 
      
      必修 
      
    </td>
    <td align="center"  VALIGN="center" width="60" height="23"> 
       王森
    </td>
    <td align="center"  VALIGN="center" width="54" height="23"> 
	正考
    </td>
    <td align="center"  VALIGN="center" width="38" height="23"> 
	  正
    </td>
    <td align="center"  VALIGN="center" width="140" height="23"> 
	  2017-6-16
    </td>
  </tr>

  <tr>

    <td align="center" VALIGN="center" width="32" height="23"> 
      25
    </td>
    <td align="center"  VALIGN="center" width="84" height="23"> 
      IPT10300
    </td>
    <td VALIGN="center" width="210" height="23"> 
      马克思主义基本原理
    </td>
    <td  align="center" VALIGN="center" width="43" height="23">
	82
    </td>
    <td  align="center" VALIGN="center" width="43" height="23"> 
      3
    </td>
    <td  align="center" VALIGN="center" width="53" height="23"> 
      
	  正常
      
    </td>
    <td  align="center" VALIGN="center" width="52" height="23"> 
      
      必修 
      
    </td>
    <td align="center"  VALIGN="center" width="60" height="23"> 
       庞永红
    </td>
    <td align="center"  VALIGN="center" width="54" height="23"> 
	正考
    </td>
    <td align="center"  VALIGN="center" width="38" height="23"> 
	  正
    </td>
    <td align="center"  VALIGN="center" width="140" height="23"> 
	  2018-7-13
    </td>
  </tr>

  <tr>

    <td align="center" VALIGN="center" width="32" height="23"> 
      26
    </td>
    <td align="center"  VALIGN="center" width="84" height="23"> 
      IPT10400
    </td>
    <td VALIGN="center" width="210" height="23"> 
      毛泽东思想和中国特色社会主义理论体系概论
    </td>
    <td  align="center" VALIGN="center" width="43" height="23">
	75
    </td>
    <td  align="center" VALIGN="center" width="43" height="23"> 
      3
    </td>
    <td  align="center" VALIGN="center" width="53" height="23"> 
      
	  正常
      
    </td>
    <td  align="center" VALIGN="center" width="52" height="23"> 
      
      必修 
      
    </td>
    <td align="center"  VALIGN="center" width="60" height="23"> 
       刘昕
    </td>
    <td align="center"  VALIGN="center" width="54" height="23"> 
	正考
    </td>
    <td align="center"  VALIGN="center" width="38" height="23"> 
	  正
    </td>
    <td align="center"  VALIGN="center" width="140" height="23"> 
	  2018-1-16
    </td>
  </tr>

  <tr>

    <td align="center" VALIGN="center" width="32" height="23"> 
      27
    </td>
    <td align="center"  VALIGN="center" width="84" height="23"> 
      IPT13400
    </td>
    <td VALIGN="center" width="210" height="23"> 
      毛泽东思想和中国特色社会主义理论体系概论实践
    </td>
    <td  align="center" VALIGN="center" width="43" height="23">
	良
    </td>
    <td  align="center" VALIGN="center" width="43" height="23"> 
      3
    </td>
    <td  align="center" VALIGN="center" width="53" height="23"> 
      
	  正常
      
    </td>
    <td  align="center" VALIGN="center" width="52" height="23"> 
      
      必修 
      
    </td>
    <td align="center"  VALIGN="center" width="60" height="23"> 
       刘昕
    </td>
    <td align="center"  VALIGN="center" width="54" height="23"> 
	正考
    </td>
    <td align="center"  VALIGN="center" width="38" height="23"> 
	  正
    </td>
    <td align="center"  VALIGN="center" width="140" height="23"> 
	  2018-1-16
    </td>
  </tr>

  <tr>

    <td align="center" VALIGN="center" width="32" height="23"> 
      28
    </td>
    <td align="center"  VALIGN="center" width="84" height="23"> 
      SE21007
    </td>
    <td VALIGN="center" width="210" height="23"> 
      面向对象程序设计
    </td>
    <td  align="center" VALIGN="center" width="43" height="23">
	80
    </td>
    <td  align="center" VALIGN="center" width="43" height="23"> 
      3
    </td>
    <td  align="center" VALIGN="center" width="53" height="23"> 
      
	  正常
      
    </td>
    <td  align="center" VALIGN="center" width="52" height="23"> 
      
      必修 
      
    </td>
    <td align="center"  VALIGN="center" width="60" height="23"> 
       雷跃明
    </td>
    <td align="center"  VALIGN="center" width="54" height="23"> 
	正考
    </td>
    <td align="center"  VALIGN="center" width="38" height="23"> 
	  正
    </td>
    <td align="center"  VALIGN="center" width="140" height="23"> 
	  2017-6-30
    </td>
  </tr>

  <tr>

    <td align="center" VALIGN="center" width="32" height="23"> 
      29
    </td>
    <td align="center"  VALIGN="center" width="84" height="23"> 
      SE31105
    </td>
    <td VALIGN="center" width="210" height="23"> 
      面向对象技术与UML
    </td>
    <td  align="center" VALIGN="center" width="43" height="23">
	91
    </td>
    <td  align="center" VALIGN="center" width="43" height="23"> 
      2
    </td>
    <td  align="center" VALIGN="center" width="53" height="23"> 
      
	  正常
      
    </td>
    <td  align="center" VALIGN="center" width="52" height="23"> 
      
      必修 
      
    </td>
    <td align="center"  VALIGN="center" width="60" height="23"> 
       徐玲
    </td>
    <td align="center"  VALIGN="center" width="54" height="23"> 
	正考
    </td>
    <td align="center"  VALIGN="center" width="38" height="23"> 
	  正
    </td>
    <td align="center"  VALIGN="center" width="140" height="23"> 
	  2019-1-13
    </td>
  </tr>

  <tr>

    <td align="center" VALIGN="center" width="32" height="23"> 
      30
    </td>
    <td align="center"  VALIGN="center" width="84" height="23"> 
      SE31113
    </td>
    <td VALIGN="center" width="210" height="23"> 
      软件测试
    </td>
    <td  align="center" VALIGN="center" width="43" height="23">
	79
    </td>
    <td  align="center" VALIGN="center" width="43" height="23"> 
      2
    </td>
    <td  align="center" VALIGN="center" width="53" height="23"> 
      
	  正常
      
    </td>
    <td  align="center" VALIGN="center" width="52" height="23"> 
      
      必修 
      
    </td>
    <td align="center"  VALIGN="center" width="60" height="23"> 
       雷晏
    </td>
    <td align="center"  VALIGN="center" width="54" height="23"> 
	正考
    </td>
    <td align="center"  VALIGN="center" width="38" height="23"> 
	  正
    </td>
    <td align="center"  VALIGN="center" width="140" height="23"> 
	  2019-5-27
    </td>
  </tr>

  <tr>

    <td align="center" VALIGN="center" width="32" height="23"> 
      31
    </td>
    <td align="center"  VALIGN="center" width="84" height="23"> 
      SE21101
    </td>
    <td VALIGN="center" width="210" height="23"> 
      软件工程导论
    </td>
    <td  align="center" VALIGN="center" width="43" height="23">
	88
    </td>
    <td  align="center" VALIGN="center" width="43" height="23"> 
      2
    </td>
    <td  align="center" VALIGN="center" width="53" height="23"> 
      
	  正常
      
    </td>
    <td  align="center" VALIGN="center" width="52" height="23"> 
      
      必修 
      
    </td>
    <td align="center"  VALIGN="center" width="60" height="23"> 
       张毅
    </td>
    <td align="center"  VALIGN="center" width="54" height="23"> 
	正考
    </td>
    <td align="center"  VALIGN="center" width="38" height="23"> 
	  正
    </td>
    <td align="center"  VALIGN="center" width="140" height="23"> 
	  2018-7-14
    </td>
  </tr>

  <tr>

    <td align="center" VALIGN="center" width="32" height="23"> 
      32
    </td>
    <td align="center"  VALIGN="center" width="84" height="23"> 
      SE34063
    </td>
    <td VALIGN="center" width="210" height="23"> 
      软件工程实训
    </td>
    <td  align="center" VALIGN="center" width="43" height="23">
	85
    </td>
    <td  align="center" VALIGN="center" width="43" height="23"> 
      3
    </td>
    <td  align="center" VALIGN="center" width="53" height="23"> 
      
	  正常
      
    </td>
    <td  align="center" VALIGN="center" width="52" height="23"> 
      
      必修 
      
    </td>
    <td align="center"  VALIGN="center" width="60" height="23"> 
       杨正益
    </td>
    <td align="center"  VALIGN="center" width="54" height="23"> 
	正考
    </td>
    <td align="center"  VALIGN="center" width="38" height="23"> 
	  正
    </td>
    <td align="center"  VALIGN="center" width="140" height="23"> 
	  2019-7-18
    </td>
  </tr>

  <tr>

    <td align="center" VALIGN="center" width="32" height="23"> 
      33
    </td>
    <td align="center"  VALIGN="center" width="84" height="23"> 
      SE31111
    </td>
    <td VALIGN="center" width="210" height="23"> 
      软件架构与设计模式
    </td>
    <td  align="center" VALIGN="center" width="43" height="23">
	87
    </td>
    <td  align="center" VALIGN="center" width="43" height="23"> 
      2
    </td>
    <td  align="center" VALIGN="center" width="53" height="23"> 
      
	  正常
      
    </td>
    <td  align="center" VALIGN="center" width="52" height="23"> 
      
      必修 
      
    </td>
    <td align="center"  VALIGN="center" width="60" height="23"> 
       蔡海尼
    </td>
    <td align="center"  VALIGN="center" width="54" height="23"> 
	正考
    </td>
    <td align="center"  VALIGN="center" width="38" height="23"> 
	  正
    </td>
    <td align="center"  VALIGN="center" width="140" height="23"> 
	  2019-7-5
    </td>
  </tr>

  <tr>

    <td align="center" VALIGN="center" width="32" height="23"> 
      34
    </td>
    <td align="center"  VALIGN="center" width="84" height="23"> 
      SE30109
    </td>
    <td VALIGN="center" width="210" height="23"> 
      软件项目管理
    </td>
    <td  align="center" VALIGN="center" width="43" height="23">
	84
    </td>
    <td  align="center" VALIGN="center" width="43" height="23"> 
      2
    </td>
    <td  align="center" VALIGN="center" width="53" height="23"> 
      
	  正常
      
    </td>
    <td  align="center" VALIGN="center" width="52" height="23"> 
      
      必修 
      
    </td>
    <td align="center"  VALIGN="center" width="60" height="23"> 
       任海军
    </td>
    <td align="center"  VALIGN="center" width="54" height="23"> 
	正考
    </td>
    <td align="center"  VALIGN="center" width="38" height="23"> 
	  正
    </td>
    <td align="center"  VALIGN="center" width="140" height="23"> 
	  2019-6-21
    </td>
  </tr>

  <tr>

    <td align="center" VALIGN="center" width="32" height="23"> 
      35
    </td>
    <td align="center"  VALIGN="center" width="84" height="23"> 
      SE30103
    </td>
    <td VALIGN="center" width="210" height="23"> 
      软件需求分析
    </td>
    <td  align="center" VALIGN="center" width="43" height="23">
	81
    </td>
    <td  align="center" VALIGN="center" width="43" height="23"> 
      2
    </td>
    <td  align="center" VALIGN="center" width="53" height="23"> 
      
	  正常
      
    </td>
    <td  align="center" VALIGN="center" width="52" height="23"> 
      
      必修 
      
    </td>
    <td align="center"  VALIGN="center" width="60" height="23"> 
       张毅
    </td>
    <td align="center"  VALIGN="center" width="54" height="23"> 
	正考
    </td>
    <td align="center"  VALIGN="center" width="38" height="23"> 
	  正
    </td>
    <td align="center"  VALIGN="center" width="140" height="23"> 
	  2019-1-13
    </td>
  </tr>

  <tr>

    <td align="center" VALIGN="center" width="32" height="23"> 
      36
    </td>
    <td align="center"  VALIGN="center" width="84" height="23"> 
      SE20205
    </td>
    <td VALIGN="center" width="210" height="23"> 
      色彩与平面构成
    </td>
    <td  align="center" VALIGN="center" width="43" height="23">
	93
    </td>
    <td  align="center" VALIGN="center" width="43" height="23"> 
      2
    </td>
    <td  align="center" VALIGN="center" width="53" height="23"> 
      
	  正常
      
    </td>
    <td  align="center" VALIGN="center" width="52" height="23"> 
      
      专选 
      
    </td>
    <td align="center"  VALIGN="center" width="60" height="23"> 
       马跃
    </td>
    <td align="center"  VALIGN="center" width="54" height="23"> 
	正考
    </td>
    <td align="center"  VALIGN="center" width="38" height="23"> 
	  正
    </td>
    <td align="center"  VALIGN="center" width="140" height="23"> 
	  2018-7-17
    </td>
  </tr>

  <tr>

    <td align="center" VALIGN="center" width="32" height="23"> 
      37
    </td>
    <td align="center"  VALIGN="center" width="84" height="23"> 
      SE21013
    </td>
    <td VALIGN="center" width="210" height="23"> 
      数据结构与算法
    </td>
    <td  align="center" VALIGN="center" width="43" height="23">
	63
    </td>
    <td  align="center" VALIGN="center" width="43" height="23"> 
      3
    </td>
    <td  align="center" VALIGN="center" width="53" height="23"> 
      
	  正常
      
    </td>
    <td  align="center" VALIGN="center" width="52" height="23"> 
      
      必修 
      
    </td>
    <td align="center"  VALIGN="center" width="60" height="23"> 
       文俊浩
    </td>
    <td align="center"  VALIGN="center" width="54" height="23"> 
	正考
    </td>
    <td align="center"  VALIGN="center" width="38" height="23"> 
	  正
    </td>
    <td align="center"  VALIGN="center" width="140" height="23"> 
	  2018-1-26
    </td>
  </tr>

  <tr>

    <td align="center" VALIGN="center" width="32" height="23"> 
      38
    </td>
    <td align="center"  VALIGN="center" width="84" height="23"> 
      SE25012
    </td>
    <td VALIGN="center" width="210" height="23"> 
      数据结构与算法课程设计
    </td>
    <td  align="center" VALIGN="center" width="43" height="23">
	优
    </td>
    <td  align="center" VALIGN="center" width="43" height="23"> 
      1
    </td>
    <td  align="center" VALIGN="center" width="53" height="23"> 
      
	  正常
      
    </td>
    <td  align="center" VALIGN="center" width="52" height="23"> 
      
      必修 
      
    </td>
    <td align="center"  VALIGN="center" width="60" height="23"> 
       文俊浩
    </td>
    <td align="center"  VALIGN="center" width="54" height="23"> 
	正考
    </td>
    <td align="center"  VALIGN="center" width="38" height="23"> 
	  正
    </td>
    <td align="center"  VALIGN="center" width="140" height="23"> 
	  2018-1-26
    </td>
  </tr>

  <tr>

    <td align="center" VALIGN="center" width="32" height="23"> 
      39
    </td>
    <td align="center"  VALIGN="center" width="84" height="23"> 
      SE25018
    </td>
    <td VALIGN="center" width="210" height="23"> 
      数据库课程设计
    </td>
    <td  align="center" VALIGN="center" width="43" height="23">
	良
    </td>
    <td  align="center" VALIGN="center" width="43" height="23"> 
      1
    </td>
    <td  align="center" VALIGN="center" width="53" height="23"> 
      
	  正常
      
    </td>
    <td  align="center" VALIGN="center" width="52" height="23"> 
      
      必修 
      
    </td>
    <td align="center"  VALIGN="center" width="60" height="23"> 
       柳玲
    </td>
    <td align="center"  VALIGN="center" width="54" height="23"> 
	正考
    </td>
    <td align="center"  VALIGN="center" width="38" height="23"> 
	  正
    </td>
    <td align="center"  VALIGN="center" width="140" height="23"> 
	  2018-7-5
    </td>
  </tr>

  <tr>

    <td align="center" VALIGN="center" width="32" height="23"> 
      40
    </td>
    <td align="center"  VALIGN="center" width="84" height="23"> 
      SE21017
    </td>
    <td VALIGN="center" width="210" height="23"> 
      数据库原理与设计
    </td>
    <td  align="center" VALIGN="center" width="43" height="23">
	81
    </td>
    <td  align="center" VALIGN="center" width="43" height="23"> 
      3
    </td>
    <td  align="center" VALIGN="center" width="53" height="23"> 
      
	  正常
      
    </td>
    <td  align="center" VALIGN="center" width="52" height="23"> 
      
      必修 
      
    </td>
    <td align="center"  VALIGN="center" width="60" height="23"> 
       柳玲
    </td>
    <td align="center"  VALIGN="center" width="54" height="23"> 
	正考
    </td>
    <td align="center"  VALIGN="center" width="38" height="23"> 
	  正
    </td>
    <td align="center"  VALIGN="center" width="140" height="23"> 
	  2018-7-2
    </td>
  </tr>

  <tr>

    <td align="center" VALIGN="center" width="32" height="23"> 
      41
    </td>
    <td align="center"  VALIGN="center" width="84" height="23"> 
      IPG00003
    </td>
    <td VALIGN="center" width="210" height="23"> 
      数学模型
    </td>
    <td  align="center" VALIGN="center" width="43" height="23">
	86
    </td>
    <td  align="center" VALIGN="center" width="43" height="23"> 
      2
    </td>
    <td  align="center" VALIGN="center" width="53" height="23"> 
      
	  正常
      
    </td>
    <td  align="center" VALIGN="center" width="52" height="23"> 
      
      素质 
      
    </td>
    <td align="center"  VALIGN="center" width="60" height="23"> 
       胥斌
    </td>
    <td align="center"  VALIGN="center" width="54" height="23"> 
	正考
    </td>
    <td align="center"  VALIGN="center" width="38" height="23"> 
	  正
    </td>
    <td align="center"  VALIGN="center" width="140" height="23"> 
	  2018-1-13
    </td>
  </tr>

  <tr>

    <td align="center" VALIGN="center" width="32" height="23"> 
      42
    </td>
    <td align="center"  VALIGN="center" width="84" height="23"> 
      FSS18033
    </td>
    <td VALIGN="center" width="210" height="23"> 
      数学与交叉学科建模
    </td>
    <td  align="center" VALIGN="center" width="43" height="23">
	85
    </td>
    <td  align="center" VALIGN="center" width="43" height="23"> 
      2
    </td>
    <td  align="center" VALIGN="center" width="53" height="23"> 
      
	  正常
      
    </td>
    <td  align="center" VALIGN="center" width="52" height="23"> 
      
      专选(非限)
      
    </td>
    <td align="center"  VALIGN="center" width="60" height="23"> 
       龚劬
    </td>
    <td align="center"  VALIGN="center" width="54" height="23"> 
	正考
    </td>
    <td align="center"  VALIGN="center" width="38" height="23"> 
	  正
    </td>
    <td align="center"  VALIGN="center" width="140" height="23"> 
	  2018-8-24
    </td>
  </tr>

  <tr>

    <td align="center" VALIGN="center" width="32" height="23"> 
      43
    </td>
    <td align="center"  VALIGN="center" width="84" height="23"> 
      SE31213
    </td>
    <td VALIGN="center" width="210" height="23"> 
      数字动画与游戏设计
    </td>
    <td  align="center" VALIGN="center" width="43" height="23">
	90
    </td>
    <td  align="center" VALIGN="center" width="43" height="23"> 
      3
    </td>
    <td  align="center" VALIGN="center" width="53" height="23"> 
      
	  正常
      
    </td>
    <td  align="center" VALIGN="center" width="52" height="23"> 
      
      专选 
      
    </td>
    <td align="center"  VALIGN="center" width="60" height="23"> 
       陈远
    </td>
    <td align="center"  VALIGN="center" width="54" height="23"> 
	正考
    </td>
    <td align="center"  VALIGN="center" width="38" height="23"> 
	  正
    </td>
    <td align="center"  VALIGN="center" width="140" height="23"> 
	  2019-6-17
    </td>
  </tr>

  <tr>

    <td align="center" VALIGN="center" width="32" height="23"> 
      44
    </td>
    <td align="center"  VALIGN="center" width="84" height="23"> 
      SE21203
    </td>
    <td VALIGN="center" width="210" height="23"> 
      数字摄影
    </td>
    <td  align="center" VALIGN="center" width="43" height="23">
	84
    </td>
    <td  align="center" VALIGN="center" width="43" height="23"> 
      2
    </td>
    <td  align="center" VALIGN="center" width="53" height="23"> 
      
	  正常
      
    </td>
    <td  align="center" VALIGN="center" width="52" height="23"> 
      
      专选 
      
    </td>
    <td align="center"  VALIGN="center" width="60" height="23"> 
       黄勇
    </td>
    <td align="center"  VALIGN="center" width="54" height="23"> 
	正考
    </td>
    <td align="center"  VALIGN="center" width="38" height="23"> 
	  正
    </td>
    <td align="center"  VALIGN="center" width="140" height="23"> 
	  2018-1-23
    </td>
  </tr>

  <tr>

    <td align="center" VALIGN="center" width="32" height="23"> 
      45
    </td>
    <td align="center"  VALIGN="center" width="84" height="23"> 
      SE20201
    </td>
    <td VALIGN="center" width="210" height="23"> 
      数字作品创意策划
    </td>
    <td  align="center" VALIGN="center" width="43" height="23">
	92
    </td>
    <td  align="center" VALIGN="center" width="43" height="23"> 
      2
    </td>
    <td  align="center" VALIGN="center" width="53" height="23"> 
      
	  正常
      
    </td>
    <td  align="center" VALIGN="center" width="52" height="23"> 
      
      专选 
      
    </td>
    <td align="center"  VALIGN="center" width="60" height="23"> 
       马跃
    </td>
    <td align="center"  VALIGN="center" width="54" height="23"> 
	正考
    </td>
    <td align="center"  VALIGN="center" width="38" height="23"> 
	  正
    </td>
    <td align="center"  VALIGN="center" width="140" height="23"> 
	  2018-1-26
    </td>
  </tr>

  <tr>

    <td align="center" VALIGN="center" width="32" height="23"> 
      46
    </td>
    <td align="center"  VALIGN="center" width="84" height="23"> 
      IPT10100
    </td>
    <td VALIGN="center" width="210" height="23"> 
      思想道德修养与法律基础
    </td>
    <td  align="center" VALIGN="center" width="43" height="23">
	83
    </td>
    <td  align="center" VALIGN="center" width="43" height="23"> 
      2
    </td>
    <td  align="center" VALIGN="center" width="53" height="23"> 
      
	  正常
      
    </td>
    <td  align="center" VALIGN="center" width="52" height="23"> 
      
      必修 
      
    </td>
    <td align="center"  VALIGN="center" width="60" height="23"> 
       陈迅
    </td>
    <td align="center"  VALIGN="center" width="54" height="23"> 
	正考
    </td>
    <td align="center"  VALIGN="center" width="38" height="23"> 
	  正
    </td>
    <td align="center"  VALIGN="center" width="140" height="23"> 
	  2017-1-17
    </td>
  </tr>

  <tr>

    <td align="center" VALIGN="center" width="32" height="23"> 
      47
    </td>
    <td align="center"  VALIGN="center" width="84" height="23"> 
      IPT13100
    </td>
    <td VALIGN="center" width="210" height="23"> 
      思想道德修养与法律基础实践
    </td>
    <td  align="center" VALIGN="center" width="43" height="23">
	良
    </td>
    <td  align="center" VALIGN="center" width="43" height="23"> 
      1
    </td>
    <td  align="center" VALIGN="center" width="53" height="23"> 
      
	  正常
      
    </td>
    <td  align="center" VALIGN="center" width="52" height="23"> 
      
      必修 
      
    </td>
    <td align="center"  VALIGN="center" width="60" height="23"> 
       陈迅
    </td>
    <td align="center"  VALIGN="center" width="54" height="23"> 
	正考
    </td>
    <td align="center"  VALIGN="center" width="38" height="23"> 
	  正
    </td>
    <td align="center"  VALIGN="center" width="140" height="23"> 
	  2017-2-24
    </td>
  </tr>

  <tr>

    <td align="center" VALIGN="center" width="32" height="23"> 
      48
    </td>
    <td align="center"  VALIGN="center" width="84" height="23"> 
      PSS12010
    </td>
    <td VALIGN="center" width="210" height="23"> 
      体育健康知识
    </td>
    <td  align="center" VALIGN="center" width="43" height="23">
	合格
    </td>
    <td  align="center" VALIGN="center" width="43" height="23"> 
      1
    </td>
    <td  align="center" VALIGN="center" width="53" height="23"> 
      
	  正常
      
    </td>
    <td  align="center" VALIGN="center" width="52" height="23"> 
      
      必修 
      
    </td>
    <td align="center"  VALIGN="center" width="60" height="23"> 
       体育学院
    </td>
    <td align="center"  VALIGN="center" width="54" height="23"> 
	正考
    </td>
    <td align="center"  VALIGN="center" width="38" height="23"> 
	  正
    </td>
    <td align="center"  VALIGN="center" width="140" height="23"> 
	  2018-1-12
    </td>
  </tr>

  <tr>

    <td align="center" VALIGN="center" width="32" height="23"> 
      49
    </td>
    <td align="center"  VALIGN="center" width="84" height="23"> 
      PSS22040
    </td>
    <td VALIGN="center" width="210" height="23"> 
      体育项目(长跑)
    </td>
    <td  align="center" VALIGN="center" width="43" height="23">
	合格
    </td>
    <td  align="center" VALIGN="center" width="43" height="23"> 
      1
    </td>
    <td  align="center" VALIGN="center" width="53" height="23"> 
      
	  正常
      
    </td>
    <td  align="center" VALIGN="center" width="52" height="23"> 
      
      必修 
      
    </td>
    <td align="center"  VALIGN="center" width="60" height="23"> 
       纪建敏
    </td>
    <td align="center"  VALIGN="center" width="54" height="23"> 
	正考
    </td>
    <td align="center"  VALIGN="center" width="38" height="23"> 
	  正
    </td>
    <td align="center"  VALIGN="center" width="140" height="23"> 
	  2017-1-7
    </td>
  </tr>

  <tr>

    <td align="center" VALIGN="center" width="32" height="23"> 
      50
    </td>
    <td align="center"  VALIGN="center" width="84" height="23"> 
      PSS22039
    </td>
    <td VALIGN="center" width="210" height="23"> 
      体育自选项目(网球)
    </td>
    <td  align="center" VALIGN="center" width="43" height="23">
	合格
    </td>
    <td  align="center" VALIGN="center" width="43" height="23"> 
      1
    </td>
    <td  align="center" VALIGN="center" width="53" height="23"> 
      
	  正常
      
    </td>
    <td  align="center" VALIGN="center" width="52" height="23"> 
      
      必修 
      
    </td>
    <td align="center"  VALIGN="center" width="60" height="23"> 
       体育学院
    </td>
    <td align="center"  VALIGN="center" width="54" height="23"> 
	正考
    </td>
    <td align="center"  VALIGN="center" width="38" height="23"> 
	  正
    </td>
    <td align="center"  VALIGN="center" width="140" height="23"> 
	  2018-6-24
    </td>
  </tr>

  <tr>

    <td align="center" VALIGN="center" width="32" height="23"> 
      51
    </td>
    <td align="center"  VALIGN="center" width="84" height="23"> 
      PSS22041
    </td>
    <td VALIGN="center" width="210" height="23"> 
      体育自选项目(校园马拉松)
    </td>
    <td  align="center" VALIGN="center" width="43" height="23">
	合格
    </td>
    <td  align="center" VALIGN="center" width="43" height="23"> 
      1
    </td>
    <td  align="center" VALIGN="center" width="53" height="23"> 
      
	  正常
      
    </td>
    <td  align="center" VALIGN="center" width="52" height="23"> 
      
      必修 
      
    </td>
    <td align="center"  VALIGN="center" width="60" height="23"> 
       体育学院
    </td>
    <td align="center"  VALIGN="center" width="54" height="23"> 
	正考
    </td>
    <td align="center"  VALIGN="center" width="38" height="23"> 
	  正
    </td>
    <td align="center"  VALIGN="center" width="140" height="23"> 
	  2018-1-12
    </td>
  </tr>

  <tr>

    <td align="center" VALIGN="center" width="32" height="23"> 
      52
    </td>
    <td align="center"  VALIGN="center" width="84" height="23"> 
      EDS20505
    </td>
    <td VALIGN="center" width="210" height="23"> 
      西方建筑文化与翻译
    </td>
    <td  align="center" VALIGN="center" width="43" height="23">
	84
    </td>
    <td  align="center" VALIGN="center" width="43" height="23"> 
      2
    </td>
    <td  align="center" VALIGN="center" width="53" height="23"> 
      
	  正常
      
    </td>
    <td  align="center" VALIGN="center" width="52" height="23"> 
      
      专选 
      
    </td>
    <td align="center"  VALIGN="center" width="60" height="23"> 
       沈立
    </td>
    <td align="center"  VALIGN="center" width="54" height="23"> 
	正考
    </td>
    <td align="center"  VALIGN="center" width="38" height="23"> 
	  正
    </td>
    <td align="center"  VALIGN="center" width="140" height="23"> 
	  2018-1-23
    </td>
  </tr>

  <tr>

    <td align="center" VALIGN="center" width="32" height="23"> 
      53
    </td>
    <td align="center"  VALIGN="center" width="84" height="23"> 
      MTH10032
    </td>
    <td VALIGN="center" width="210" height="23"> 
      线性代数(II)
    </td>
    <td  align="center" VALIGN="center" width="43" height="23">
	76
    </td>
    <td  align="center" VALIGN="center" width="43" height="23"> 
      3
    </td>
    <td  align="center" VALIGN="center" width="53" height="23"> 
      
	  正常
      
    </td>
    <td  align="center" VALIGN="center" width="52" height="23"> 
      
      必修 
      
    </td>
    <td align="center"  VALIGN="center" width="60" height="23"> 
       胡小兵
    </td>
    <td align="center"  VALIGN="center" width="54" height="23"> 
	正考
    </td>
    <td align="center"  VALIGN="center" width="38" height="23"> 
	  正
    </td>
    <td align="center"  VALIGN="center" width="140" height="23"> 
	  2017-1-14
    </td>
  </tr>

  <tr>

    <td align="center" VALIGN="center" width="32" height="23"> 
      54
    </td>
    <td align="center"  VALIGN="center" width="84" height="23"> 
      SE10001
    </td>
    <td VALIGN="center" width="210" height="23"> 
      新生研讨课
    </td>
    <td  align="center" VALIGN="center" width="43" height="23">
	合格
    </td>
    <td  align="center" VALIGN="center" width="43" height="23"> 
      1
    </td>
    <td  align="center" VALIGN="center" width="53" height="23"> 
      
	  正常
      
    </td>
    <td  align="center" VALIGN="center" width="52" height="23"> 
      
      必修 
      
    </td>
    <td align="center"  VALIGN="center" width="60" height="23"> 
       陈蜀宇
    </td>
    <td align="center"  VALIGN="center" width="54" height="23"> 
	正考
    </td>
    <td align="center"  VALIGN="center" width="38" height="23"> 
	  正
    </td>
    <td align="center"  VALIGN="center" width="140" height="23"> 
	  2017-1-7
    </td>
  </tr>

  <tr>

    <td align="center" VALIGN="center" width="32" height="23"> 
      55
    </td>
    <td align="center"  VALIGN="center" width="84" height="23"> 
      SE30501
    </td>
    <td VALIGN="center" width="210" height="23"> 
      信息安全导论
    </td>
    <td  align="center" VALIGN="center" width="43" height="23">
	96
    </td>
    <td  align="center" VALIGN="center" width="43" height="23"> 
      2
    </td>
    <td  align="center" VALIGN="center" width="53" height="23"> 
      
	  正常
      
    </td>
    <td  align="center" VALIGN="center" width="52" height="23"> 
      
      专选 
      
    </td>
    <td align="center"  VALIGN="center" width="60" height="23"> 
       胡海波
    </td>
    <td align="center"  VALIGN="center" width="54" height="23"> 
	正考
    </td>
    <td align="center"  VALIGN="center" width="38" height="23"> 
	  正
    </td>
    <td align="center"  VALIGN="center" width="140" height="23"> 
	  2019-1-17
    </td>
  </tr>

  <tr>

    <td align="center" VALIGN="center" width="32" height="23"> 
      56
    </td>
    <td align="center"  VALIGN="center" width="84" height="23"> 
      SE10003
    </td>
    <td VALIGN="center" width="210" height="23"> 
      信息系统基础
    </td>
    <td  align="center" VALIGN="center" width="43" height="23">
	88
    </td>
    <td  align="center" VALIGN="center" width="43" height="23"> 
      2
    </td>
    <td  align="center" VALIGN="center" width="53" height="23"> 
      
	  正常
      
    </td>
    <td  align="center" VALIGN="center" width="52" height="23"> 
      
      必修 
      
    </td>
    <td align="center"  VALIGN="center" width="60" height="23"> 
       葛永新
    </td>
    <td align="center"  VALIGN="center" width="54" height="23"> 
	正考
    </td>
    <td align="center"  VALIGN="center" width="38" height="23"> 
	  正
    </td>
    <td align="center"  VALIGN="center" width="140" height="23"> 
	  2017-1-7
    </td>
  </tr>

  <tr>

    <td align="center" VALIGN="center" width="32" height="23"> 
      57
    </td>
    <td align="center"  VALIGN="center" width="84" height="23"> 
      IPT10000
    </td>
    <td VALIGN="center" width="210" height="23"> 
      形势与政策(1)
    </td>
    <td  align="center" VALIGN="center" width="43" height="23">
	90
    </td>
    <td  align="center" VALIGN="center" width="43" height="23"> 
      .5
    </td>
    <td  align="center" VALIGN="center" width="53" height="23"> 
      
	  正常
      
    </td>
    <td  align="center" VALIGN="center" width="52" height="23"> 
      
      必修 
      
    </td>
    <td align="center"  VALIGN="center" width="60" height="23"> 
       王丹云
    </td>
    <td align="center"  VALIGN="center" width="54" height="23"> 
	正考
    </td>
    <td align="center"  VALIGN="center" width="38" height="23"> 
	  正
    </td>
    <td align="center"  VALIGN="center" width="140" height="23"> 
	  2017-1-17
    </td>
  </tr>

  <tr>

    <td align="center" VALIGN="center" width="32" height="23"> 
      58
    </td>
    <td align="center"  VALIGN="center" width="84" height="23"> 
      IPT10001
    </td>
    <td VALIGN="center" width="210" height="23"> 
      形势与政策(2)
    </td>
    <td  align="center" VALIGN="center" width="43" height="23">
	90
    </td>
    <td  align="center" VALIGN="center" width="43" height="23"> 
      .5
    </td>
    <td  align="center" VALIGN="center" width="53" height="23"> 
      
	  正常
      
    </td>
    <td  align="center" VALIGN="center" width="52" height="23"> 
      
      必修 
      
    </td>
    <td align="center"  VALIGN="center" width="60" height="23"> 
       周大秋
    </td>
    <td align="center"  VALIGN="center" width="54" height="23"> 
	正考
    </td>
    <td align="center"  VALIGN="center" width="38" height="23"> 
	  正
    </td>
    <td align="center"  VALIGN="center" width="140" height="23"> 
	  2017-7-2
    </td>
  </tr>

  <tr>

    <td align="center" VALIGN="center" width="32" height="23"> 
      59
    </td>
    <td align="center"  VALIGN="center" width="84" height="23"> 
      IPT20000
    </td>
    <td VALIGN="center" width="210" height="23"> 
      形势与政策(3)
    </td>
    <td  align="center" VALIGN="center" width="43" height="23">
	89
    </td>
    <td  align="center" VALIGN="center" width="43" height="23"> 
      .5
    </td>
    <td  align="center" VALIGN="center" width="53" height="23"> 
      
	  正常
      
    </td>
    <td  align="center" VALIGN="center" width="52" height="23"> 
      
      必修 
      
    </td>
    <td align="center"  VALIGN="center" width="60" height="23"> 
       常进
    </td>
    <td align="center"  VALIGN="center" width="54" height="23"> 
	正考
    </td>
    <td align="center"  VALIGN="center" width="38" height="23"> 
	  正
    </td>
    <td align="center"  VALIGN="center" width="140" height="23"> 
	  2018-1-19
    </td>
  </tr>

  <tr>

    <td align="center" VALIGN="center" width="32" height="23"> 
      60
    </td>
    <td align="center"  VALIGN="center" width="84" height="23"> 
      IPT20001
    </td>
    <td VALIGN="center" width="210" height="23"> 
      形势与政策(4)
    </td>
    <td  align="center" VALIGN="center" width="43" height="23">
	95
    </td>
    <td  align="center" VALIGN="center" width="43" height="23"> 
      .5
    </td>
    <td  align="center" VALIGN="center" width="53" height="23"> 
      
	  正常
      
    </td>
    <td  align="center" VALIGN="center" width="52" height="23"> 
      
      必修 
      
    </td>
    <td align="center"  VALIGN="center" width="60" height="23"> 
       王丹云
    </td>
    <td align="center"  VALIGN="center" width="54" height="23"> 
	正考
    </td>
    <td align="center"  VALIGN="center" width="38" height="23"> 
	  正
    </td>
    <td align="center"  VALIGN="center" width="140" height="23"> 
	  2018-7-11
    </td>
  </tr>

  <tr>

    <td align="center" VALIGN="center" width="32" height="23"> 
      61
    </td>
    <td align="center"  VALIGN="center" width="84" height="23"> 
      EUS10021
    </td>
    <td VALIGN="center" width="210" height="23"> 
      学业素养英语(2)
    </td>
    <td  align="center" VALIGN="center" width="43" height="23">
	80
    </td>
    <td  align="center" VALIGN="center" width="43" height="23"> 
      2
    </td>
    <td  align="center" VALIGN="center" width="53" height="23"> 
      
	  正常
      
    </td>
    <td  align="center" VALIGN="center" width="52" height="23"> 
      
      专选 
      
    </td>
    <td align="center"  VALIGN="center" width="60" height="23"> 
       晏生宏
    </td>
    <td align="center"  VALIGN="center" width="54" height="23"> 
	正考
    </td>
    <td align="center"  VALIGN="center" width="38" height="23"> 
	  正
    </td>
    <td align="center"  VALIGN="center" width="140" height="23"> 
	  2017-1-13
    </td>
  </tr>

  <tr>

    <td align="center" VALIGN="center" width="32" height="23"> 
      62
    </td>
    <td align="center"  VALIGN="center" width="84" height="23"> 
      EUS10031
    </td>
    <td VALIGN="center" width="210" height="23"> 
      学业素养英语(3)
    </td>
    <td  align="center" VALIGN="center" width="43" height="23">
	84
    </td>
    <td  align="center" VALIGN="center" width="43" height="23"> 
      2
    </td>
    <td  align="center" VALIGN="center" width="53" height="23"> 
      
	  正常
      
    </td>
    <td  align="center" VALIGN="center" width="52" height="23"> 
      
      专选 
      
    </td>
    <td align="center"  VALIGN="center" width="60" height="23"> 
       晏生宏
    </td>
    <td align="center"  VALIGN="center" width="54" height="23"> 
	正考
    </td>
    <td align="center"  VALIGN="center" width="38" height="23"> 
	  正
    </td>
    <td align="center"  VALIGN="center" width="140" height="23"> 
	  2017-7-9
    </td>
  </tr>

  <tr>

    <td align="center" VALIGN="center" width="32" height="23"> 
      63
    </td>
    <td align="center"  VALIGN="center" width="84" height="23"> 
      SE31305
    </td>
    <td VALIGN="center" width="210" height="23"> 
      移动应用开发
    </td>
    <td  align="center" VALIGN="center" width="43" height="23">
	93
    </td>
    <td  align="center" VALIGN="center" width="43" height="23"> 
      2
    </td>
    <td  align="center" VALIGN="center" width="53" height="23"> 
      
	  正常
      
    </td>
    <td  align="center" VALIGN="center" width="52" height="23"> 
      
      专选 
      
    </td>
    <td align="center"  VALIGN="center" width="60" height="23"> 
       Feno
    </td>
    <td align="center"  VALIGN="center" width="54" height="23"> 
	正考
    </td>
    <td align="center"  VALIGN="center" width="38" height="23"> 
	  正
    </td>
    <td align="center"  VALIGN="center" width="140" height="23"> 
	  2019-7-1
    </td>
  </tr>

  <tr>

    <td align="center" VALIGN="center" width="32" height="23"> 
      64
    </td>
    <td align="center"  VALIGN="center" width="84" height="23"> 
      EUS10121
    </td>
    <td VALIGN="center" width="210" height="23"> 
      英语口语交际技能(2)
    </td>
    <td  align="center" VALIGN="center" width="43" height="23">
	76
    </td>
    <td  align="center" VALIGN="center" width="43" height="23"> 
      1
    </td>
    <td  align="center" VALIGN="center" width="53" height="23"> 
      
	  正常
      
    </td>
    <td  align="center" VALIGN="center" width="52" height="23"> 
      
      专选 
      
    </td>
    <td align="center"  VALIGN="center" width="60" height="23"> 
       Karlene
    </td>
    <td align="center"  VALIGN="center" width="54" height="23"> 
	正考
    </td>
    <td align="center"  VALIGN="center" width="38" height="23"> 
	  正
    </td>
    <td align="center"  VALIGN="center" width="140" height="23"> 
	  2017-1-12
    </td>
  </tr>

  <tr>

    <td align="center" VALIGN="center" width="32" height="23"> 
      65
    </td>
    <td align="center"  VALIGN="center" width="84" height="23"> 
      EUS10131
    </td>
    <td VALIGN="center" width="210" height="23"> 
      英语口语交际技能(3)
    </td>
    <td  align="center" VALIGN="center" width="43" height="23">
	83
    </td>
    <td  align="center" VALIGN="center" width="43" height="23"> 
      1
    </td>
    <td  align="center" VALIGN="center" width="53" height="23"> 
      
	  正常
      
    </td>
    <td  align="center" VALIGN="center" width="52" height="23"> 
      
      专选 
      
    </td>
    <td align="center"  VALIGN="center" width="60" height="23"> 
       朱永蓉
    </td>
    <td align="center"  VALIGN="center" width="54" height="23"> 
	正考
    </td>
    <td align="center"  VALIGN="center" width="38" height="23"> 
	  正
    </td>
    <td align="center"  VALIGN="center" width="140" height="23"> 
	  2017-7-7
    </td>
  </tr>

  <tr>

    <td align="center" VALIGN="center" width="32" height="23"> 
      66
    </td>
    <td align="center"  VALIGN="center" width="84" height="23"> 
      EDS20401
    </td>
    <td VALIGN="center" width="210" height="23"> 
      英语学术论文写作
    </td>
    <td  align="center" VALIGN="center" width="43" height="23">
	90
    </td>
    <td  align="center" VALIGN="center" width="43" height="23"> 
      2
    </td>
    <td  align="center" VALIGN="center" width="53" height="23"> 
      
	  正常
      
    </td>
    <td  align="center" VALIGN="center" width="52" height="23"> 
      
      专选 
      
    </td>
    <td align="center"  VALIGN="center" width="60" height="23"> 
       孙凌
    </td>
    <td align="center"  VALIGN="center" width="54" height="23"> 
	正考
    </td>
    <td align="center"  VALIGN="center" width="38" height="23"> 
	  正
    </td>
    <td align="center"  VALIGN="center" width="140" height="23"> 
	  2018-7-12
    </td>
  </tr>

  <tr>

    <td align="center" VALIGN="center" width="32" height="23"> 
      67
    </td>
    <td align="center"  VALIGN="center" width="84" height="23"> 
      IPT10200
    </td>
    <td VALIGN="center" width="210" height="23"> 
      中国近现代史纲要
    </td>
    <td  align="center" VALIGN="center" width="43" height="23">
	88
    </td>
    <td  align="center" VALIGN="center" width="43" height="23"> 
      2
    </td>
    <td  align="center" VALIGN="center" width="53" height="23"> 
      
	  正常
      
    </td>
    <td  align="center" VALIGN="center" width="52" height="23"> 
      
      必修 
      
    </td>
    <td align="center"  VALIGN="center" width="60" height="23"> 
       黄艳
    </td>
    <td align="center"  VALIGN="center" width="54" height="23"> 
	正考
    </td>
    <td align="center"  VALIGN="center" width="38" height="23"> 
	  正
    </td>
    <td align="center"  VALIGN="center" width="140" height="23"> 
	  2017-7-10
    </td>
  </tr>

  <tr>

    <td align="center" VALIGN="center" width="32" height="23"> 
      68
    </td>
    <td align="center"  VALIGN="center" width="84" height="23"> 
      SE20025
    </td>
    <td VALIGN="center" width="210" height="23"> 
      专业英语文体和写作
    </td>
    <td  align="center" VALIGN="center" width="43" height="23">
	90
    </td>
    <td  align="center" VALIGN="center" width="43" height="23"> 
      2
    </td>
    <td  align="center" VALIGN="center" width="53" height="23"> 
      
	  正常
      
    </td>
    <td  align="center" VALIGN="center" width="52" height="23"> 
      
      专选 
      
    </td>
    <td align="center"  VALIGN="center" width="60" height="23"> 
       外教2
    </td>
    <td align="center"  VALIGN="center" width="54" height="23"> 
	正考
    </td>
    <td align="center"  VALIGN="center" width="38" height="23"> 
	  正
    </td>
    <td align="center"  VALIGN="center" width="140" height="23"> 
	  2018-7-19
    </td>
  </tr>

</table>
<p><font size="3"><center>重庆大学教务处   查询时间:2019-8-30 20:24:50</center></font> </p>

</td></tr>
<tr>
<td>
</td></tr>
</table></center>
   
</body>
</html>

 

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值