摘要:
这是一个使用python连接mysql的例子 涉及到类的使用 import pymysql import function as f def mysql(): db=pymysql.connect(host='localhost',user='root',password='1234',charse 阅读全文
摘要:
上课的时,因为教室机总会重新重启,有时候就要重配网卡yum源和下载一些辅助工具,这里写一个脚本省去冗杂的过程 if [[]]可以防止unary operator expected的报错 nmcli device connect eno16777728 可以快速配网 复制以下代码 #!/bin/bas 阅读全文
摘要:
python 爬取豆瓣top250并导入到mysql数据库中 import pymysql import requests import re url='https://movie.douban.com/top250' headers={'User-Agent': 'Mozilla/5.0 (Win 阅读全文
摘要:
#### 设置windows的端口转发 以管理员运行cmd netsh interface portproxy show all netsh interface portproxy add v4tov4 listenport=445 listenaddress=127.0.0.1 connectad 阅读全文
摘要:
Linux 搭建网站 配置网络 1 改对应配置文件 vi /etc/sysconfig/network-scripts/ifcfg-ens32 2 使用命令 nmcli connection add con-name supermao ifname ens32 type ethernet nmcli 阅读全文
摘要:
### 两边虚拟机时间不一样cinder会报错。 在compute节输入命令 ntpdate 192.168.10.100 systemctl restart openstack-cinder-volume #!/bin/bash source /etc/keystone/admin-openrc. 阅读全文
摘要:
dumps和loads的使用 import json dict = {'姓名': 'supermao','年龄': '19','爱好': '未知', '地区': '武汉'} string=json.dumps(dict,ensure_ascii=False) #ensure_ascii 不用asci 阅读全文
摘要:
####python 类 #####封装 class Person: def init(self, name): self.name = name # 姓名 self.__age = 1 # 年龄,默认为1岁,私有属性 # 设置私有属性值的方法 def set_age(self, new_age): 阅读全文
摘要:
###豆瓣电影 import re import requests headers={"User-Agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:94.0) Gecko/20100101 Firefox/94.0"} url='https: 阅读全文
摘要:
##python 正则表达式 #####示例1 import re pattern = '[a-z]*' print(type(pattern)) print(re.match(pattern,'hello123a').group(0)) #match函数会自动将字符串转换为正则表达式 当后面不符合 阅读全文