摘要: 1 <!DOCTYPE html> 2 <html lang="en"> 3 <head> 4 <meta charset="UTF-8"> 5 <title>CSS 网页布局</title> 6 <meta name="viewport" content="width=device-width,i 阅读全文
posted @ 2020-08-11 09:08 白月如初12138 阅读(206) 评论(0) 推荐(0)
摘要: 1 <!DOCTYPE html> 2 <html lang="en"> 3 <head> 4 <meta charset="UTF-8"> 5 <title>测试CSS页面</title> 6 <style> 7 body{ 8 background-color: #d0e4fe; 9 backg 阅读全文
posted @ 2020-08-11 09:07 白月如初12138 阅读(295) 评论(0) 推荐(0)
摘要: 1 <!DOCTYPE html> 2 <html lang="en"> 3 <head> 4 <meta charset="UTF-8"> 5 <title>Title</title> 6 <script> 7 document.createElement("myHero")//JS语句docum 阅读全文
posted @ 2020-08-08 09:49 白月如初12138 阅读(203) 评论(0) 推荐(0)
摘要: <!DOCTYPE html><!--声明为HTML5文档--><html lang="en"><head><!-- 页面表头上的操作--> <meta charset="UTF-8"><!-- 定义网页编码格式为utf-8--> <meta name="author" content="chunf 阅读全文
posted @ 2020-07-28 17:59 白月如初12138 阅读(155) 评论(0) 推荐(0)
摘要: 1 from time import sleep 2 import random,pyperclip,os 3 import pyautogui 4 from openpyxl import load_workbook 5 import datetime 6 import tkinter as tk 阅读全文
posted @ 2020-07-24 11:41 白月如初12138 阅读(440) 评论(0) 推荐(0)
摘要: 1 # 案例获取鼠标的位置,方便复制我们定位的鼠标坐标点到代码中 2 import pyautogui 3 import time 4 5 # 获取鼠标位置 6 def get_mouse_positon(): 7 time.sleep(5) # 准备时间 8 print('开始获取鼠标位置') 9 阅读全文
posted @ 2020-07-24 11:36 白月如初12138 阅读(484) 评论(0) 推荐(0)
摘要: 1 # -*- coding: utf-8 -*- 2 # @Time : 2020/7/6 13:46 3 # @Author : Chunfang 4 # @Email : 3470959534@qq.com 5 # @File : test02.py 6 # @Software: PyChar 阅读全文
posted @ 2020-07-20 08:33 白月如初12138 阅读(499) 评论(0) 推荐(0)
摘要: 1 import os,glob 2 def photo_compression(original_imgage,tmp_image_path): 3 '''图片备份、压缩;param original_imgage:原始图片路径;param tmp_imgage_path:临时图片路径,备份路径; 阅读全文
posted @ 2020-07-04 11:24 白月如初12138 阅读(2098) 评论(0) 推荐(0)
摘要: import os,xlrd,openpyxl import time import re from selenium import webdriver from time import sleep from selenium.webdriver.chrome.service import Serv 阅读全文
posted @ 2020-06-12 10:56 白月如初12138 阅读(148) 评论(0) 推荐(0)
摘要: 1 a=[1,3,[5,9],[1,3],[2,4]] 2 b =[(1, [3, 9,1]), (2, [4, 8,4]), (3, [1, 2,5])] 3 b.sort(key=lambda x:x[1][1])#,reverse=True 二维列表排序,倒序 4 print(b) 5 b.s 阅读全文
posted @ 2020-06-05 15:17 白月如初12138 阅读(505) 评论(0) 推荐(0)