-
作业3
数据采集与融合技术作业3 实验一 (1)实验过程 要求: 指定一个网站,爬取这个网站中的所有的所有图片,例如:中国气象网(http://www.weather.com.cn)。实现单线程和多线程的方式爬取。 –务必控制总页数(学号尾数2位)、总下载的图片数量(尾数后3位)等限制爬取的措施。 核心代码 -
高级语言程序设计课程第七次个人作业
作业要求:https://edu.cnblogs.com/campus/fzu/gjyycx/homework/15587 班级链接:https://edu.cnblogs.com/campus/fzu/gjyycx/ 姓名:吴鸿益 学号:102500419 (1)定义一个二维数组和指向该数组的指针 -
oop实验三
实验三: task1: 源代码: 1 #pragma once 2 #include <iostream> 3 #include <string> 4 5 class Button { 6 public: 7 Button(const std::string &label_); 8 const st -
102302147傅乐宜作业3
1.指定一个网站,爬取这个网站中的所有的所有图片,例如:中国气象网(http://www.weather.com.cn)。实现单线程和多线程的方式爬取。 内容 由于是爬了好几次的网站,所以不放网页结构了 核心代码 1.单线程 点击查看代码 import requests from bs4 impor -
高级语言程序设计课程第七次个人作业
这个作业属于哪个课程:https://edu.cnblogs.com/campus/fzu/gjyycx 这个作业要求在哪里:https://edu.cnblogs.com/campus/fzu/gjyycx/homework/15587 学号:102500301 姓名:沙圣茗 1)定义一个二维数组 -
实验三
TASK1 button.hpp 点击查看代码 #pragma once #include <iostream> #include <string> class Button { public: Button(const std::string &label_); const std::string -
高级语言程序设计课程第七次个人作业
这个作业属于哪个课程:https://edu.cnblogs.com/campus/fzu/gjyycx 这个作业要求在哪里:https://edu.cnblogs.com/campus/fzu/gjyycx/homework/15587 学号:102500323 姓名:黄铭昊 一、定义一个二维数组 -
高级语言程序设计课程第七次个人作业
高级语言程序设计课程第七次个人作业 这个作业属于哪个课程:https://edu.cnblogs.com/campus/fzu/gjyycx 这个作业要求在哪里: https://edu.cnblogs.com/campus/fzu/gjyycx/homework/15587 姓名:林帅前 学号:1 -
高级语言程序设计课程第七次个人作业
这个作业属于哪个课程:https://edu.cnblogs.com/campus/fzu/gjyycx 这个作业的要求在:https://edu.cnblogs.com/campus/fzu/gjyycx/homework/15587 学号:102500313 姓名:林奕鹏 总结:指针与数组和函数 -
高级语言程序设计第七次个人作业
这个作业属于哪个课程:https://edu.cnblogs.com/campus/fzu/gjyycx 这个作业的要求在:https://edu.cnblogs.com/campus/fzu/gjyycx/homework/15587 姓名:李文涛 学号:102500327 (1)定义一个二维数组 -
高级语言程序设计课程第七次个人作业
这个作业属于哪个课程:https://edu.cnblogs.com/campus/fzu/gjyycx 这个作业的要求在:https://edu.cnblogs.com/campus/fzu/gjyycx/homework/15587 学号:102500326 姓名:罗炜 1 2 3 4 5 6 -
实验三
实验任务1 代码: button.hpp #pragma once #include <iostream> #include <string> class Button { public: Button(const std::string& label_); const std::string& g -
数据采集技术 - 第三次作业:Scrapy框架与数据库存储
作业① 1)、图片爬取实验 1. 实验描述 指定一个网站(以中国气象网为例),爬取该网站下的所有图片。 难点:需分别实现单线程和多线程两种方式,并控制总下载数量不超过学号后3位(130张)。 2. 核心代码 (1) 环境适配与SSL修复 在 MacOS 环境下,Python 的 SSL 模块与系统底 -
数据采集实践第三次作业—102302131陈宇新
数据采集实践第三次作业—102302131陈宇新 代码路径:https://gitee.com/chenyuxin0328/data-collection/tree/master/作业3 作业1 要求:指定一个网站,爬取这个网站中的所有的所有图片,例如中国气象网(http://www.weather -
实验3 类和对象
实验任务1 代码 c++ 1 #pragma once 2 3 #include <iostream> 4 #include <string> 5 6 class Button { 7 public: 8 Button(const std::string &label_); 9 const std: -
实验3
task1: 1.源代码 button.hpp 1 #pragma once 2 3 #include <iostream> 4 #include <string> 5 6 class Button { 7 public: 8 Button(const std::string &label_); 9 -
c++ 3
##task 1 #代码 1 #pragma once 2 3 #include <iostream> 4 #include <string> 5 6 class Button { 7 public: 8 Button(const std::string &label_); 9 const std: -
高级语言程序设计课程第七次个人作业
这个作业属于哪个课程:https://edu.cnblogs.com/campus/fzu/gjyycx 这个作业的要求在:https://edu.cnblogs.com/campus/fzu/gjyycx/homework/15587 姓名:黄思哲 学号:102500433 1. a.int a; -
实验三.类和对象
任务1. button.hpp #pragma once #include <iostream> #include <string> class Button { public: Button(const std::string &label_); const std::string& get_la -
1023021226李坤铭第三次作业
作业①: 要求:指定一个网站,爬取这个网站中的所有的所有图片,例如:中国气象网(http://www.weather.com.cn)。实现单线程和多线程的方式爬取。 1)单线程代码: 点击查看代码 import os import requests from bs4 import Beautiful