摘要:
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 阅读全文