摘要: SyntaxError: (unicode error) ‘unicodeescape’ codec can’t decode bytes in position 原始代码 for x in os.listdir('C:\Users\Administrator\Desktop\files'): pr 阅读全文
posted @ 2022-12-04 11:58 carol2014 阅读(42) 评论(0) 推荐(0)
摘要: 水平对齐 <!DOCTYPE html> <html> <head> <meta charset="utf-8" /> <style> div { margin: 1rem; } /* 文本居中 */ .text-center { text-align: center; border: 1px so 阅读全文
posted @ 2022-12-02 17:11 carol2014 阅读(258) 评论(0) 推荐(0)
摘要: 部分配置项 <link href="./plugins/fullcalendar-5.11.2/lib/main.css" rel="stylesheet" /> <script type="text/javascript" language="javascript" src="./plugins/ 阅读全文
posted @ 2022-12-02 16:55 carol2014 阅读(2819) 评论(0) 推荐(0)
摘要: 使用 js 组件 fullcalendar 构建简单会议室预约页面 <link href="./plugins/fullcalendar-5.11.2/fullcalendar-scheduler/main.min.css" rel="stylesheet" /> <script type="tex 阅读全文
posted @ 2022-12-02 16:37 carol2014 阅读(1067) 评论(0) 推荐(0)
摘要: 使用 js 判断时间区间是否重叠 <script> const range = [ { st: "2022-11-29 10:00", et: "2022-11-29 11:00", }, { st: "2022-11-29 15:00", et: "2022-11-29 19:00", }, ]; 阅读全文
posted @ 2022-12-02 16:29 carol2014 阅读(1295) 评论(0) 推荐(0)
摘要: PHP Intelephense :php 代码格式化,代码提示等功能 PHP Server:打开一个 php 文件,右键即可开启一个 server,并在默认浏览器中运行当前文件 Laravel Blade formatter:laravel 框架 blade 文件格式化 python、Black 阅读全文
posted @ 2022-12-02 16:27 carol2014 阅读(728) 评论(0) 推荐(0)
摘要: import csv import seaborn as sns import matplotlib.pyplot as plt # 解决中文不显示和负号不显示问题 rc = { 'font.family': 'Microsoft YaHei', 'axes.unicode_minus': Fals 阅读全文
posted @ 2022-12-02 16:12 carol2014 阅读(75) 评论(0) 推荐(0)
摘要: pip install xlsxwriter xlsxwriter 生成的文件后缀名为.xlsx,最大能够支持 1048576 行数据,16384 列数据 import os import xlsxwriter import datetime if os.path.exists('./gen-fil 阅读全文
posted @ 2022-12-02 16:06 carol2014 阅读(465) 评论(0) 推荐(1)
摘要: pip install openpyxl openpyxl 读写 xlsx 文件,不处理 xls 文件 读文件 import openpyxl # 打开xlsx文件 excel = openpyxl.load_workbook('./source-files/info.xlsx') for shee 阅读全文
posted @ 2022-12-02 16:03 carol2014 阅读(1065) 评论(0) 推荐(0)
摘要: 最新要处理excel文件,于是整理了下python3中常用操作excel的包的用法 pip 用法 # 查看已安装 pip list # 安装包 pip install xlrd # 安装指定版本 pip install xlrd==1.2.0 # 卸载 pip uninstall xlrd xlrd 阅读全文
posted @ 2022-12-02 15:59 carol2014 阅读(413) 评论(0) 推荐(0)