11 2021 档案
摘要:526c4ace9bbd6fe89965904a29802a1799 免费版本,利用人工智能答题。先安装专业浏览器。尽量一台电脑一个百度账号,一天答题量不超过40个问题。不然容易封IP。
阅读全文
摘要:import pandas as pd import numpy as np from pprint import pprint pd.set_option('display.max_columns', None) data = [] classList = ["2101大数据", "2101软件"
阅读全文
摘要:一、常用美化 #home { margin: 0 auto; width: 80%;/*原始65*/ min-width: 980px;/*页面顶部的宽度*/ background-color: rgba(245, 245, 245, 0.7); padding: 30px; margin-top:
阅读全文
摘要:一、ps查看进程 1.CPU占用最多的前10个进程: ps auxw|head -1;ps auxw|sort -rn -k3|head -10 2.内存消耗最多的前10个进程 ps auxw|head -1;ps auxw|sort -rn -k4|head -10 3.虚拟内存使用最多的前10个
阅读全文
摘要:最全的Python虚拟环境使用方法 写在前面 关于Python虚拟环境管理,曾经做为一名新人一直不以为意,心想反正都是我要用的库,全安装在一起,要用直接导入,多好。可是,后来,懂得越来越多的我,不仅流下了悔恨了泪水呀,这一次,关于Python虚拟环境管理的方法一网打尽,喜欢哪种方式,大家自己选吧。再
阅读全文
摘要:在服务器上启动jupyterab,开启,jupyterlab 安装jupyterlab: pip install jupyterlab 生成配置文件,并记下输出的配置文件地址,一般是在 ~/.jupyter/jupyter_notebook_config.py : jupyter lab --gen
阅读全文
摘要:在Linux服务器运行py文件时,有时会因为终端窗口的关闭而结束py文件的执行,这时候使用下面的命令运行py文件: $nohup python3 main.py & 命令解释: nohup: 不挂断的运行命令 格式:nohup Command [ Arg … ] [ & ] & : 在后台运行 一般
阅读全文
摘要:pip install pip-autoremove pip_autoremove jupyter -y
阅读全文
摘要:我们可以基于Entry重写一个新的组件类,代码如下: class EditLabel(Entry): ''' 一个可以编辑的Label fg和bg 为常规状态下的颜色,编辑模式颜色为黑白 ''' def __init__(self,master,text,fg='black',bg='#f0f0f0
阅读全文