摘要:
Jenkins open api : https://www.cnblogs.com/anliven/p/13642675.html 要在Python中调用Jenkins,你可以按照以下步骤进行操作: 确认Python环境已安装并配置好 确保你的Python环境已经正确安装并配置。你可以通过运行 阅读全文
摘要:
1) f-string Pyhon从3.6开始,新增了f-string方法: name = "Mike" age = 18print(f"My name is {name} and I'm {age} yeras old")#My name is Mike and I'm 18 yeras old 阅读全文
摘要:
使用 .* import re data = "This is new book <testInfo> info"#如果是匹配,开始符后面的所有字符,只能用.* 如果使用 .*?就会匹配不到任何字符 result = re.findall("<(.*)",data) print(result) #如 阅读全文