首页
Linux
服务部署
Nginx
MySQL
Docker
Jenkins
Python
Golang
前端
javascript
react
其它
传送门
cn2linux
行动起来,活在当下
累计撰写
128
篇文章
累计创建
1
个标签
累计收到
0
条评论
栏目
首页
Linux
服务部署
Nginx
MySQL
Docker
Jenkins
Python
Golang
前端
javascript
react
其它
传送门
目 录
CONTENT
以下是
Python
相关的文章
草稿:Python switch/case 实现
def dispatch_if(operator, x, y): if operator == 'add': return x + y elif operator == 'sub': return x - y elif operator ==
2023-12-16
11
0
0
Python
草稿:Python 函数传入字典
# Python 3.5+ allows passing multiple sets # of keyword arguments ("kwargs") to a # function within a single call, using # the "**" syntax: >>> def p
2023-12-16
10
0
0
Python
草稿:Python 使用内置HTTP服务
Python3的启动方式 python3 -m http.server Python2的启动方式 python -m SimpleHTTPServer 8000 Python内置的http服务会将当前启动的目录设置为根服务器。
2023-12-16
14
0
0
Python
草稿:Python 多行字符串
方法一 s1 = """Multi line strings can be put between triple quotes. It's not ideal when formatting your code though""" print (s1) 输出: Mu
2023-12-16
10
0
0
Python
草稿:Python 类、静态、实例方法说明
创建一个测试类 class MyClass: def method(self): """ Instance methods need a class instance and can access the instance through `s
2023-12-16
12
0
0
Python
草稿:Python 判断key 或者值在枚举里
from enum import Enum class testEnum(Enum): key1 = 0 key2 = 1 "key1" in testEnum.__members__ 0 in testEnum._value2member_map_
2023-12-16
10
0
0
Python
Python 使用动态变量名访问变量值
使用 locals() 函数 locals() 函数返回当前局部符号表的字典,我们可以使用变量名作为键来访问其对应的值。示例代码如下: var = "This is a string" varName = 'var' s = locals()[varName] print(s) # 输出:This
2023-12-16
10
0
0
Python
Python 检测证书是否有效
import os import logging import socket import ssl from ssl import SSLError import urllib.request import argparse # 配置日志 logging.basicConfig(level=log
2023-12-16
10
0
0
Python
Python 线程
import time import threading class FuncThread(threading.Thread): def __init__(self, func, *args, **kwargs): super(FuncThread, self)
2023-12-16
47
0
0
Python
Python 剔除列表中的空元素
实例元素: list1 = ["first", "", "second"] 使用实例: method1 = [x for x in list1 if x]
2023-12-15
26
0
0
Python
1
2
3
4