㈠ 如何用python找出字元串的學號及中英文姓名
用正則表達式.
import re
content = '''
<tr><td>1001</td><td>張三<br /></td></tr>
<tr><td>1002<消野搏/td><td>李四</td></拿祥tr>
<tr><td>1003</td><td><B>Tom</B></td></脊歲tr>
'''
stu=re.findall("(\d+).*>(\w+)<",content)
print(stu)
list_dict=[[("學號",i[0]),("姓名",i[1])] for i in stu]
stu_info=[dict(i) for i in list_dict]
print(stu_info)
或者用bs4也行。
㈡ python selenium如何點擊頁面table列表中的元素
1.通過selenium定位方式(id、name、xpath等方式)定位table標簽
#html源碼<table border="5" id="table1" width="80%">#selenium操作代碼table1=driver.find_element_by_id('table1')
2.獲取總行數(也就是獲取tr標簽的個數)
#html源碼<tr><th>姓名</th><th>性別</th></tr>#selenium操作源碼
table_rows = table1.find_elements_by_tag_name('tr')
3.獲取總列數(也就是tr標簽下面的th標簽個數)
#html源碼<tr><th>姓名</th><th>性別</th></tr>#selenium操作源碼:第一個tr標簽下有多少個th
table_rows = table_rows[0].find_elements_by_tag_name('th')
4.獲取單個cell值
#selenium操作源碼:第一行第二列的text值row1_col2 = table_rows[1].find_elements_by_tag_name('td')[1].text
5.取值比對~
㈢ Python怎麼輸出變數對應的值的前四個字元格式
Python輸出變數對應的值的前四個字元格式方法:
字元串格式輸出lstrip去掉左邊的空格
rstrip去掉右邊的空格
print'學生管理系統'.center(50,*):長度為50,居中,其餘用*表示即可。