一、要点说明:
根据站点当前API数据是由‘\r’字符连接的字符串的特点,主要用到了字符串的split()方法。此方法参数就是‘\r’。函数返回值是被分隔的字符串的列表。通过使用列表索引就可以分项取到天气数据。
二、示例代码:
import requests
headers = {
'User-Agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) '
'Chrome/83.0.4103.116 Safari/537.36'}
while True:
city = input('请输入查询的城市:(回车直接退出)\n')
if not city:
break
url = 'http://api.tangdouz.com/tq.php?dz=' + city
res = requests.get(url)
result = res.content.decode('utf-8')
items = result.split('\\r')
# print(items)
print(items[0])
print(items[2])
print(items[3])
print(items[4])
print('*' * 50)