一、openpyxl,实现随机点名 1 import openpyxl, random 2 3 def call_somebody(): 4 excel = openpyxl.load_workbook(r"./学员名单.xlsx") 5 sheet = excel.active 6 name_li ...
分类:
编程语言 时间:
2019-12-30 00:22:02
阅读次数:
98
用心分享,共同成长
没有什么比每天进步一点点更重要了
分类:
系统相关 时间:
2019-12-30 00:07:01
阅读次数:
139
<!doctype html> <html lang="en"> <head> <meta charset="utf-8" /> <title>图表选项卡</title> <link rel="stylesheet" href="https://cdn.bootcss.com/bootstrap/3 ...
分类:
Web程序 时间:
2019-12-29 20:07:12
阅读次数:
133
Server Side Attack Install Metasploit cummunity/pro and active it. Create a new project for the target - Mestaploitable machine and start the scan. St ...
分类:
数据库 时间:
2019-12-29 14:50:57
阅读次数:
64
小程序自定义多选按钮 1、html部分 <checkbox-group bindchange="checkboxChange" class = "flex"> <label class="checkbox {{item.checked?'active':''}}" wx:for="{{items}} ...
分类:
微信 时间:
2019-12-29 14:46:38
阅读次数:
175
关闭防火墙和selinux安全机制 systemctl disable firewalld #关闭防火墙 systemctl status firewalld #查看防火墙状态(dead关闭;active开启) systemctl start firewalld #开启防火墙 创建yum仓库目录 m ...
分类:
其他好文 时间:
2019-12-29 01:00:04
阅读次数:
87
css基础-css选择器和css文本样式相关: 使用link链入外部样式,页面加载时会同时加载样式 @import url(“*.css”);使用导入式,页面加载完后,才会加载样式 链接伪类的顺序 :link-> :visited ->:hover-> :active 或者 : visited -> ...
分类:
Web程序 时间:
2019-12-29 00:58:35
阅读次数:
117
在上个新版本.net core 3.1解决跨域问题后,在读取数据库的时候又出现了如下问题。 当前用的EntityFramework Core 3.1.0 原因可能是:待定。 目前的解决方法有三种: 1.在一个API中只写一个数据操作的LINQ。 2.在一个API中,所有LINQ的操作都转化为List ...
分类:
Web程序 时间:
2019-12-28 09:16:13
阅读次数:
89
1 # Setup a red prompt for root and a green one for users. 2 # rename this file to color_prompt.sh to actually enable it 3 NORMAL="\[\e[0m\]" 4 RED="\ ...
分类:
其他好文 时间:
2019-12-27 11:45:52
阅读次数:
91
伪类 一、链接伪类(又叫锚点伪类) (1) :link:用于给a标签设置点击前的样式,:visited:用于给a标签设置鼠标点击后的样式,:hover:给a标签设置当鼠标移入时显示的样式,:active:给a标签设置当鼠标摁下时显示的样式 由于a标签的:link和:visited可以覆盖a标签的所有 ...
分类:
Web程序 时间:
2019-12-27 00:30:38
阅读次数:
269