城市经纬度实例代码


本文摘自php中文网,作者PHP中文网,侵删。

1

2

3

4

5

6

7

8

9

10

11

12

13

14

#encoding:UTF-8#Python 3.4.3import urllibimport requestsdef get_info():

    city=input('请输入要查询的城市名称:')

    url=''+urllib.parse.quote(city)

    weather_data = urllib.request.urlopen(url).read()

    weather_data =eval(weather_data.decode('ascii'))print('城市:',city)print('经度:',weather_data.get('lon'))print('纬度:',weather_data.get('lat'))

    f=open('info.txt','a')

    f.writelines(str(city)+'  ')

    f.writelines(str(weather_data.get('lon'))+'  ')

    f.writelines(str(weather_data.get('lat'))+'  ')

    f.writelines("\n")

    f.close()

get_info()while 1:

    choise = input('是否继续查询,是/否:').lower()if choise == "yes":

        get_info()elif choise == "no":breakelse:print ('enter "yes" or "no"')continue

以上就是城市经纬度实例代码的详细内容,更多文章请关注木庄网络博客!!

相关阅读 >>

Python爬虫怎么实现翻页

Python字符串拼接格式化输出的三种方法介绍

Python打开py文件一闪而过怎么办?

Python xlsxwriter模块创建aexcel表格

引用库使用的保留字是什么

Python常见语句汇总

Python如何输入中文

Python中怎么查看内置函数

Python去掉空白行的多种实现代码

Python中的value是什么

更多相关阅读请进入《Python》频道 >>




打赏

取消

感谢您的支持,我会继续努力的!

扫码支持
扫码打赏,您说多少就多少

打开支付宝扫一扫,即可进行扫码打赏哦

分享从这里开始,精彩与您同在

评论

管理员已关闭评论功能...