__
-
prometheus监控redis-cluster集群
信息 prometheus v2.1.0redis_exporter v1.6.1redis cluster 5.0 3 mater 3 slave prometheus.yml …
-
python argsparse
python 运行时参数设置 import argparse # Press the green button in the gutter to run the script. i…
-
python函数及内置函数__init__自己的见解!!
函数的定义方式(常见的三种) 第一种,无参数 def hanshu(): print(“hanshu”) hanshu() #调用函数 第二种,…
-
8/21 python基础学习4
第九章 类 类的创建: class Dog: def __init__(self, name, age): # 初始化函数 self.name = name self.age = …
-
pbds 学习记录
# pbds 学习记录pbds库提供了一些常用的数据结构,常数上通常比对应的常用 stl 更快,所以值得整理一下。## 堆为了使用 pbds 的堆,我们要使用如下头文件“…
-
pbds 学习记录
# pbds 学习记录pbds库提供了一些常用的数据结构,常数上通常比对应的常用 stl 更快,所以值得整理一下。## 堆为了使用 pbds 的堆,我们要使用如下头文件“…
-
Python入门系列(七)开发常说的“累”与“对象”
类与对象 Python是一种面向对象的编程语言。 要创建类,请使用关键字class class MyClass: x = 5 创建一个名为p1的对象,并打印x的值 p1 = MyC…
-
python switch 替换if else
1,python 解释器版本3.10以上可以使用如下 def dar(darling): match darling: case ‘400’: print(400) case ‘4…
-
python wraps装饰器
from functools import wraps def decorator(func): “””this is decorator __doc__””” @wraps(fu…
-
Python custom modify the __add__ method All In One
Python custom modify the add method All In One Python 改写 __add__ 类方法 “”” # class Juice: # …