class ImgSpider(scrapy.Spider): name = 'img' # allowed_domains = ['https://sc.chinaz.com/tupian/'] start_urls = ['https://sc.chinaz.com/tupian/'] def ...
分类:
编程语言 时间:
2021-06-02 14:49:06
阅读次数:
0
关于substr()函数和substring()函数 关于substr()和substring()区别 MySQL: SUBSTR( ), SUBSTRING( ) Oracle: SUBSTR( ) SQL Server: SUBSTRING( ) 例如 Oracle: select substr ...
分类:
数据库 时间:
2021-06-02 12:25:36
阅读次数:
0
String类概述 String表示字符串,所有的字符串字面值都是常量(如"abc","hello"),也是字符串的对象。 字符串对象有两种形式 String s1="abc" 这就是一个字符串对象 String s2=new String("abc") 这也是一个字符串对象 两种创建对象的区别 1 ...
分类:
编程语言 时间:
2021-05-24 17:06:04
阅读次数:
0
简介 使用滑动窗口 https://leetcode-cn.com/problems/longest-substring-without-repeating-characters/solution/hua-dong-chuang-kou-by-powcai/ code C++ class Solut ...
分类:
其他好文 时间:
2021-05-24 08:33:35
阅读次数:
0
import axios from "axios"; import { getOssTicket } from "@/pages/mb/constants/API"; // 拿到ticket const getTicket = function (): any { return new Promis ...
分类:
Web程序 时间:
2021-05-04 15:31:21
阅读次数:
0
# 捕获异常,异常之后,代码不再执行 try : a = 1/0 except ZeroDivisionError as e : print('出异常了,原因:',e) except IOError as e: print('IO异常,原因:', e) except ValueError as e: ...
分类:
编程语言 时间:
2021-04-16 11:51:04
阅读次数:
0
sys.exc_info() 获取异常 import sys try: raise ValueError('this is a exp') except Exception as ex: ex_type, ex_val, ex_stack = sys.exc_info() print(ex_type ...
分类:
编程语言 时间:
2021-04-14 12:39:26
阅读次数:
0
vi string_array.sh #!/bin/bash city=(Nanjing Atlanta Massachusetts Marseilles) #建立一个简单的数组echo "Extracting Substring" #演示抽取子串功能echo ${city[*]:0} #抽取整个数 ...
分类:
编程语言 时间:
2021-04-13 12:08:59
阅读次数:
0
█ 0.代码函数: ○ 0.1 边界 Integer.MAX_VALUE int[] preorder ==> preorder == null || preorder.length == 0 char[][] board ==> board == null int[][] matrix ==> ( ...
分类:
其他好文 时间:
2021-04-06 14:10:55
阅读次数:
0
点击进入【数据聚合_数据接口调用_开发者数据API开放平台】(官网) 在pom文件中,加入依赖 ``` <!--返回json数据--> <dependency> <groupId>net.sf.json-lib</groupId> <artifactId>json-lib</artifactId> ...
分类:
编程语言 时间:
2021-03-17 14:45:35
阅读次数:
0