博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
城市经纬度(阿里云)
阅读量:5081 次
发布时间:2019-06-12

本文共 829 字,大约阅读时间需要 2 分钟。

#encoding:UTF-8#Python 3.4.3import urllibimport requestsdef get_info():    city=input('请输入要查询的城市名称:')    url='http://gc.ditu.aliyun.com/geocoding?a='+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":        break    else:        print ('enter "yes" or "no"')        continue

 

转载于:https://www.cnblogs.com/stay-hungry/p/6950638.html

你可能感兴趣的文章
php变量什么情况下加大括号{}
查看>>
linux程序设计---序
查看>>
【字符串入门专题1】hdu3613 【一个悲伤的exkmp】
查看>>
C# Linq获取两个List或数组的差集交集
查看>>
HDU 4635 Strongly connected
查看>>
ASP.NET/C#获取文章中图片的地址
查看>>
Spring MVC 入门(二)
查看>>
格式化输出数字和时间
查看>>
页面中公用的全选按钮,单选按钮组件的编写
查看>>
java笔记--用ThreadLocal管理线程,Callable<V>接口实现有返回值的线程
查看>>
BZOJ 1047 HAOI2007 理想的正方形 单调队列
查看>>
各种语言推断是否是手机设备
查看>>
这个看起来有点简单!--------实验吧
查看>>
PHP count down
查看>>
JVM参数调优:Eclipse启动实践
查看>>
(旧笔记搬家)struts.xml中单独页面跳转的配置
查看>>
不定期周末福利:数据结构与算法学习书单
查看>>
strlen函数
查看>>
python的列表与shell的数组
查看>>
关于TFS2010使用常见问题
查看>>