07 2023 档案
摘要:使用LOOKUP来对进行某列的匹配,使用方法 1. 单关键字查找 其中,E2单元格的公式如下 =LOOKUP(1,0/(D2=$A$2:$A$6),$B$2:$B$6) 2. 多关键字查找 如果遇到多关键字的查找情况,可以通过&来实现,例如 其中,F2单元格的公式如下 =LOOKUP(1,0/(E2
阅读全文
摘要:1. 安装pyserial pip3 install pyserial 2. 使用方式 config.py import serial port = "COM1" baudrate = 2400 bytesize = serial.SEVENBITS stopbits = serial.STOPBI
阅读全文
摘要:### 1. 环境准备 安装相关的库 ``` pip3 install fitz -i https://pypi.tuna.tsinghua.edu.cn/simple pip3 install PyMuPDF -i https://pypi.tuna.tsinghua.edu.cn/simple
阅读全文
摘要:### 1. 安装pdf2docx ``` pip3 install pdf2docx -i https://pypi.tuna.tsinghua.edu.cn/simple ``` ### 2. 简单使用 ``` from pdf2docx import parse pdf_file = 'tes
阅读全文
摘要:``` pip install sympy ``` ``` import sympy ``` ```py # 虚数单位i sympy.I # 𝑖 sympy.I ** 2 # -1 sympy.sqrt(-1) # 𝑖 # 自然对数的底e sympy.E # e sympy.log(sympy.
阅读全文
摘要:### 1. 下载工具 github地址:https://github.com/Genymobile/scrcpy 下载win64版本 ### 2. 手机准备 启用开发者选项里面的usb调试和usb调试(安全设置) ![image](https://img2023.cnblogs.com/blog/
阅读全文
摘要:### 1. jionlp安装 ``` pip3 install -i https://pypi.tuna.tsinghua.edu.cn/simple jionlp ``` github地址 https://github.com/dongrixinyu/JioNLP ### 2. 简单使用 ```
阅读全文
摘要:在使用pandas写excel时,报了IllegalCharacterError的错误,发现是存在非法字符造成的,使用xlsxwriter模块可以解决这个问题 ```py import xlsxwriter data.to_excel('out.xlsx', engine='xlsxwriter')
阅读全文
摘要:FillerOrderNumber列的类型为TEXT,里面的值为 ![image](https://img2023.cnblogs.com/blog/3130057/202307/3130057-20230701235015577-1381579927.png) ![image](https://i
阅读全文