摘要: 一、页面设置CSS 上传图片 上传图片后查看图片-->查看原图-->复制{图片链接} 链接复制到css代码中 body{ background-image: url(图片链接); background-attachment: fixed; background-repeat: no-repeat; 阅读全文
posted @ 2022-09-08 15:17 平行时空Times 阅读(10) 评论(0) 推荐(0)
该文被密码保护。 阅读全文
posted @ 2020-06-11 16:35 平行时空Times 阅读(0) 评论(0) 推荐(0)
摘要: 1- 当前文件列表(不下钻) DIR *.* /B >list.txt 2- 文件列表(下钻) dir /s /b >list_lj.txt 3- 批量改名 3.1 在要改名的文件夹上方输入cmd -- 回车 3.2 move "移动之前的路径.txt" "要移动到的地方" move "C:\Use 阅读全文
posted @ 2020-05-20 15:17 平行时空Times 阅读(292) 评论(0) 推荐(0)
摘要: windows系统 @echo off start /d "E:\Tencent\WeChat\" WeChat.exe start /d "E:\Tencent\WeChat\" WeChat.exe exit 1- 把代码复制到txt文件 2- txt文件后缀改正bat 3- 在微信没打开的情况 阅读全文
posted @ 2020-05-20 14:55 平行时空Times 阅读(118) 评论(0) 推荐(0)
摘要: 第一类:基础精简版 满足全部要求,实现最后的多条print语句合并为一条。注意:最后两行代码是等价的,可以根据自己的习惯选择一种 name = input('请输入您的姓名:') gender = input('请输入您的性别:') age = input('请输入您的年龄:') school = 阅读全文
posted @ 2020-04-30 09:13 平行时空Times 阅读(361) 评论(0) 推荐(0)
摘要: Power BI 的时间只能表 Model.DatesTemplate = // 模板函数 // 构造日期表的方法 // 本方法基于数据模型中最大的表 // VAR BeginDate = MINX( { MIN( 'Model_Order'[订单日期] ) , MIN( 'Model_Order' 阅读全文
posted @ 2020-01-13 17:06 平行时空Times 阅读(1428) 评论(0) 推荐(0)
摘要: strip() 方法用于移除字符串头尾指定的字符(默认为空格或换行符)或字符序列。注意:该方法只能删除开头或是结尾的字符,不能删除中间部分的字符。 str.strip([chars]) chars -- 移除字符串头尾指定的字符序列。 实例 以下实例展示了strip()函数的使用方法: 实例 str 阅读全文
posted @ 2020-01-13 14:10 平行时空Times 阅读(167) 评论(0) 推荐(0)
摘要: 生成一个工作簿,每个sheet是一个月的日历 from openpyxl.styles import Alignment, PatternFill, Font from openpyxl.utils import get_column_letter from openpyxl.drawing.ima 阅读全文
posted @ 2020-01-10 18:01 平行时空Times 阅读(135) 评论(0) 推荐(0)