城市经纬度实例代码


本文摘自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怎么去掉每行结束的换行符‘\n’

Python如何将数据写入txt

Python中sorted是什么

Python之property()装饰器的使用详解

Python如何实现打开浏览器

为何Python不好找工作

Python //什么意思

Python下解压缩zip文件并删除文件的实例_Python

Python如何实现敏感词替换

Python ide修改背景颜色的教程

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




打赏

取消

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

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

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

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

评论

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