摘要:
from Crypto.PublicKey import RSA from Crypto.Cipher import PKCS1_v1_5 as Cipher_pkcs1_v1_5 from Crypto.Signature import PKCS1_v1_5 as Signature_pkcs1_ 阅读全文
摘要:
列表解析——用来动态地创建列表 [expr for iter_var in iterable if cond_expr] 生成1-100以内的偶数 a3 = [x for x in range(1,101) if x % 2==0] print (a3) 输出结果: [2, 4, 6, 8, 10, 阅读全文
摘要:
kubernetes API官方文档在github上经常打不开,于是就放在博客了,以下内容均复制于github All URIs are relative to http://localhost MethodHTTP requestDescription connect_delete_namespa 阅读全文