- 帖子
- 8
- 精华
- 0
- 积分
- 44
- 阅读权限
- 10
- 注册时间
- 2019-4-3
- 最后登录
- 2019-7-31
|
为啥PYTHON 3.7 运行这个链接http://m.weather.com.cn/data3/city%s.xml和教程上的不一样呀,请教大神,出来的是网页代码,而不是城市列表。。。。。难道是借口改了吗?
这是代码:
import urllib.request
url1 = 'http://m.weather.com.cn/data5/city.xml'
content1 = urllib.request.urlopen(url1).read()
content1 = content1.decode('utf8')
print(content1)
这是部分结果:
<html style="font-size: 100px;">
<head>
<meta charset="utf-8">
<meta content="width=device-width, initial-scale=1.0, maximum-scale=1.0, user-scalable=0;" name="viewport">
<link rel="apple-touch-icon-precomposed" href="https://i.tq121.com.cn/i/wap/icon.jpg">
<title>中国天气网-专业天气预报、气象服务门户</title>
<script type="text/javascript" src="https://i.tq121.com.cn/j/wap2017/base-loading.js?45"></script>
<style>
* {
padding: 0;
margin: 0;
}
body {
background: #ccf2ff;
font-size: .28rem;
color: #252525;
font-family: 'Helvetica';
-webkit-user-select: none;
-webkit-text-size-adjust: none;
-webkit-tap-highlight-color: rgba(0, 0, 0, 0);
max-width: 640px;
margin: 0 auto;
}
.head {
width: 100%;
background: #f1f1f1;
height: .9rem;
overflow: hidden;
|
|