相关文章
问题3:动态库中类静态成员未定义
一、问题描述
1,编译生成一个动态库后,没有报错信息,正常编译结束; 2,编写一个可执行程序,调用上述动态库,编译报错,上述动态库中类静态成员未定义;
g -stdc11 -Wall…
建站知识
2024/12/19 10:15:17
Python实现天气查询源码
weather.py文件
from urllib import request
import re
import cityclass weather_query():url https://tianqi.so.com/weather/# 包含天气日期星期的html代码段weather_week <ul class"weather-columns"><li>([\s\S]*?)</li# 日期与星期week &l…
建站知识
2025/1/4 21:53:05
deqin -学习爬虫
import requests
# 2.发送请求
url "http://img0.bdstatic.com/static/searchresult/img/logo-2X_32a8193.png"
res requests.get(url)
# 3.写入/读取
with open("mb4.png","wb") as f:f.write(res.content)import requests
url "http:…
建站知识
2025/1/3 17:37:54
ziheng - 爬取天气预报
import requests
import city
import time
# bj input(你想查找哪个城市?)
most_cold_city "巴拉巴拉"
most_cold_city_wendu 100
a 1
for i in city.citycode.keys():print("这是查找的第%d个城市"%a)a 1# print(i)# print(city.citycode…
建站知识
2024/12/30 21:23:19
xinxin - 学习天气预报
# 7k7k
import requests
import city
bbbb input(你想干啥)
city_name city.citycode[bbbb]
url "http://t.weather.sojson.com/api/weather/city/" city_name
wang_zhi requests.get(url)
# print(wang_zhi.text)
shu_ju wang_zhi.json()
print(shu_ju)
print…
建站知识
2024/12/22 22:03:16
中国天气的各个城市的id,整理成json文件记录
{"ids": [{"北京":"101010100","海淀":"101010200","朝阳":"101010300","顺义":"101010400","怀柔":"101010500","通州":"101010600",&q…
建站知识
2025/1/3 4:06:45
Java文件处理:分离全国省市县ID(数据来自和风天气)
最近,在做第一行代码上的酷欧天气APP,但是发现书中的API已经用不了了,所以选择了和风天气的API,但是,在遍历省市县数据是遇到了麻烦,之前中国天气网是有个省市对应下一级行政区列表的,像这样&am…
建站知识
2024/12/28 1:37:24