11 2022 档案
摘要:首先将创建的项目克隆到本地,然后在终端中进入该目录 初始化 git git init 将修改添加到缓存区 git add . 将缓存区的文件提交到本地仓库 git commit -m 提交 将本地仓库关联到远端 git remote add origin http形式的git链接 提交到远程仓库 g
阅读全文
摘要:import pandas as pd change_data = pd.read_excel("待修改.xlsx") data = pd.read_excel("源文件.xlsx") data["列名"] = data["列名"].drop_duplicates() new_data = chan
阅读全文
摘要:https://shurufa.sogou.com/linux?r=pinyin 在如上链接下载,然后使用dpkg命令安装 在电脑设置中找到“区域和语言”,然后点击“管理已安装的语言”,将系统输入法系统更改为“fcitx”,然后点击“应用到整个系统”。 然后在终端中卸载ibus输入法: sudo a
阅读全文
摘要:星火商场: https://spark-app.store/download 下载deb包后使用dpkg命令进行安装,然后在商店中安装企业微信 企业微信无法开启的问题:https://github.com/zq1997/deepin-wine/issues/291 之后打开企业微信之后需要拉伸一下窗
阅读全文
摘要:import pandas as pd df = pd.read_excel("all_faq.xlsx") washer = pd.DataFrame() # 洗衣机 vacuum_cleaner = pd.DataFrame() # 吸尘器 Water_purifier = pd.DataFra
阅读全文
摘要:import pandas as pd import os path = r".\excel表格" # 获取该目录下所有文件,存入列表中 fileList = os.listdir(path) n = 0 all_df = pd.DataFrame() for i in fileList: file
阅读全文
摘要:import docx import re # 手动修改 word_name = "" # 手动修改 document = docx.Document( r".\doc\已梳理\未添加(手动添加)\新建 DOCX 文档.docx" ) all_paragraphs = document.paragr
阅读全文
摘要:sudo vim /usr/share/applications/qqmusic.desktop 在Exec后面添加--no-sandbox 参考资料:https://www.zhihu.com/question/533483027
阅读全文
摘要:import re import pandas as pd false = False true = True df = pd.read_excel("被替换.xlsx") test = pd.read_excel("test.xlsx") # 获取已修改数据 test_list = [] for
阅读全文
摘要:import requests import json import pandas as pd list2 = [] false = False true = True # post headers = {"content-type": "charset=utf8"} url = "url链接" #
阅读全文