摘要: import time import requests from selenium import webdriver from selenium.webdriver.chrome.service import Service from selenium.webdriver.common.by imp 阅读全文
posted @ 2022-10-22 10:31 python,菜鸟 阅读(35) 评论(0) 推荐(0) 编辑
摘要: <!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <meta http-equiv="X-UA-Compatible" content="IE=edge"> <meta name="viewport" content="wi 阅读全文
posted @ 2022-10-12 22:53 python,菜鸟 阅读(47) 评论(0) 推荐(0) 编辑
摘要: <!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <meta http-equiv="X-UA-Compatible" content="IE=edge"> <meta name="viewport" content="wi 阅读全文
posted @ 2022-10-12 22:46 python,菜鸟 阅读(41) 评论(0) 推荐(0) 编辑
摘要: <!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <meta http-equiv="X-UA-Compatible" content="IE=edge"> <meta name="viewport" content="wi 阅读全文
posted @ 2022-10-10 14:05 python,菜鸟 阅读(12) 评论(0) 推荐(0) 编辑
摘要: // Math.random() // Math.random() 返回 0(包括) 至 1(不包括) 之间的随机数: var zxc=Math.random() console.log(zxc); // Math.random() 与 Math.floor() 一起使用用于返回随机整数。 // 1 阅读全文
posted @ 2022-09-26 19:44 python,菜鸟 阅读(30) 评论(0) 推荐(0) 编辑
摘要: import time # from selenium import webdriver from selenium.webdriver.chrome.service import Service from bs4 import BeautifulSoup from selenium.webdriv 阅读全文
posted @ 2022-09-24 20:45 python,菜鸟 阅读(33) 评论(0) 推荐(0) 编辑
摘要: //函数使用分为两步 :声明函数 调有函数 //1.声明函数 // function 函数名(){ // console.log('函数'); // } function shasf(){ console.log('hi-'); } //(1) function 声明的函数的关键字,全部小写 //( 阅读全文
posted @ 2022-09-24 20:32 python,菜鸟 阅读(23) 评论(0) 推荐(0) 编辑
摘要: // 这是字符串 能够使用单引号或双引号 var mko='hello woredw' var qwe="hello worasd" // new 一个字符串 var ssrwa=new String("hello") // 字符串的长度】 var mko=mko.length // 索引的下标 c 阅读全文
posted @ 2022-09-21 21:30 python,菜鸟 阅读(33) 评论(0) 推荐(0) 编辑
摘要: 作者:小辉 [root@zxc qwe]# ll /dev/sd*brw-rw 1 root disk 8, 0 9月 19 14:38 /dev/sdabrw-rw 1 root disk 8, 1 9月 19 14:38 /dev/sda1brw-rw 1 root disk 8, 2 9月 1 阅读全文
posted @ 2022-09-19 16:13 python,菜鸟 阅读(31) 评论(0) 推荐(0) 编辑
摘要: create database if not exists DOOK charset 'utf8';#创建一个数据库 判断有没有,没有的话就创建 指定字符集 utf8 create table njo_op( id int auto_increment primary key comment 'id 阅读全文
posted @ 2022-09-15 17:32 python,菜鸟 阅读(14) 评论(0) 推荐(0) 编辑