城市经纬度实例代码


本文摘自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

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

相关阅读 >>

qPython3如何安装库

如何编写高效Python的代码

Python检验jarque-bera是否符合正态分布

Python 怎么获取网页内容

如何用Python求平均值

Python如何调用r

Python怎么打开使用

Python如何连接mysql

怎么用Python

Python利用requests库写爬虫的实例详解

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




打赏

取消

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

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

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

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

评论

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