摘要:
清除缓存 git rm -r --cached .git add .git statusgit commit -m "rm cached"git push 合并分支 git checkout mastergit merge pcap0721 阅读全文
摘要:
目录结构 test app user.py run.py user.py 1 #!/usr/bin/env python 2 #-*- coding: utf-8 -*- 3 4 from flask import Blueprint 5 6 user = Blueprint('user',__na 阅读全文
摘要:
配置外部转发规则 firewall-cmd --permanent --zone=external --change-interface=enp1s0 删除外部转发规则 firewall-cmd --permanent --zone=external --remove-interface='enp1 阅读全文
摘要:
转载:https://blog.csdn.net/mieleizhi0522/article/details/82142856 def foo(): print("starting...") while True: res = yield 4 #yield 看成一个rutrue print("res 阅读全文
摘要:
1 class Person(object): 2 def __init__(self,name,gender): 3 self.name = name 4 self.gender = gender 5 6 def __str__(self): 7 return '(Person: %s, %s)' 阅读全文
摘要:
2020 flag 希望自己成为一个优秀的运维开发,加油,加油! 阅读全文
摘要:
bps、pps与Bps的区别就是他们三个是三种不同的概念。 (1)bps是指比特率 bps是线路单位,表示bit(比特)/second(秒)。在计算机网络或者是网络运营商中,一般,宽带速率的单位用bps(或b/s)表示;bps表示比特每秒即表示每秒钟传输多少位信息。 (2)pps是指网络吞吐率 pp 阅读全文
摘要:
1 第一种方法 2 3 for i in range(len(numbers)): 4 5 print('({0}, {1})'.format(i, numbers[i])) 6 7 第二种方法使用enumerate函数 8 numbers = [10, 29, 30, 41] 9 for inde 阅读全文
摘要:
./mysqld_safe --user=mysql --basedir=/usr/local/mysql5.7 --datadir=/usr/local/mysql5.7/data & mysqld_safe --user=mysql --basedir=/usr/local/mysql5.7 - 阅读全文
摘要:
最常用的SQLAlchemy列类型 类型名Python类型说 明 Integer int 普通整数,一般是 32 位 SmallInteger int 取值范围小的整数,一般是 16 位 BigInteger int 或 long 不限制精度的整数 Float float 浮点数 Numeric d 阅读全文