摘要:识别滑块验证码并自动登录 import cv2 from selenium import webdriver from selenium.webdriver.support.wait import WebDriverWait from selenium.webdriver.support impor
阅读全文
摘要:代码 x = [1,1,2,2,3,2,3,4,5,6] y = [1,2,3,4,5] z = x + y print(z) # z = x - y # 会报错,不支持""-"操作 # print(z) sx = set(x) # 可以转集合,但会去除重复元素 sy = set(y) print(
阅读全文