摘要: aa=wd.find_elements_by_xpath('//a') for a in aa: print(a.text) #显示所有A标签中文本 aa=wd.find_elements_by_xpath('//a') for a in aa: print(a.get_attribute("hre 阅读全文
posted @ 2020-02-24 19:29 myrj 阅读(141) 评论(0) 推荐(0)
摘要: 1、sqlite3数据库select * from QG order by random() limit 6 以下显示前10条记录 2、SQL Server数据库select top 10 * from table_name; 3、DB2数据库select * from table_name fet 阅读全文
posted @ 2020-02-24 10:52 myrj 阅读(259) 评论(0) 推荐(0)