python3基础学习
hashlib的使用
设计一个验证用户登录的函数,根据用户输入的口令是否正确,返回True 或 False:
1 | db = { |
so easy,直接贴代码吧
1 | #!/usr/bin/env python |
根据用户输入的登录名和口令模拟用户注册,计算更安全的 MD5:
1 | db = {} |
这种题目也是送分题啊,直接贴代码了
1 | #!/usr/bin/env python |
xml解析
请利用 SAX 编写程序解析 Yahoo 的 XML 格式的天气预报,获取当天
和第二天的天气:
这部分对我来说有点难理解,不过查阅资料和看博客后自己依葫芦画瓢还是做出来了
贴上代码
1 | #!/usr/bin/env python |
html解析
找一个网页,例如 https://www.python.org/events/python-events/,用浏览器查看源码并复制,然后尝试解析一下 HTML,输出 Python 官网发布的会议时间、名称和地点
- 代码抄别人的,不过懂了,自己打了一遍
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54#!/usr/bin/env python
# coding=utf-8
from html.parser import HTMLParser
from html.entities import name2codepoint
import re
class MyHTMLParser(HTMLParser):
def __init__(self):
HTMLParser.__init__(self)
self.is_time = False
self.is_title = False
self.is_year = False
self.is_location = False
self.info = []
def handle_starttag(self, tag, attrs):
if tag == 'time':
self.is_time = True
if tag == 'h3' and ('class', 'event-title') in attrs:
self.is_title = True
if tag == 'span' and ('class', 'event-location') in attrs:
self.is_location = True
if tag == 'span' and ('class', 'say-no-more') in attrs:
self.is_year = True
def handle_data(self,data):
if self.is_time:
self.is_time = False
mydict = {'time':data}
self.info.append(mydict)
if self.is_title:
self.is_title = False
mydict = {'title':data}
self.info.append(mydict)
if self.is_location:
self.is_location = False
mydict = {'location':data}
self.info.append(mydict)
if self.is_year:
self.is_year = False
mydict = {'date':data}
if re.match(r'[0-9]',data.strip()):
self.info.append(mydict)
def getinfo(data):
parser = MyHTMLParser()
parser.feed(data)
count = 0
for x in parser.info:
for key in x:
print(key + ':' + str(x[key]))
count = count + 1
if count % 4 == 0:
print ('--------------------------------')
with open('1.html', 'r') as f:
htmlcont = f.read()
getinfo(htmlcont)
本文作者:NoOne
本文地址: https://noonegroup.xyz/posts/b164eb0e/
版权声明:转载请注明出处!