12 2022 档案

摘要:Multi-paradigm: 1. 面向对象编程(Object-oriented),提高软件的重用性、灵活性和扩展性; 2. 函数式编程(Functional),以数学函数为编程语言建模的核心的编程范式; 3. 泛型编程,提供了更高层级的抽象; 1. 面向对象编程: 面向对象编程将对象作为程序的基 阅读全文
posted @ 2022-12-25 19:16 MoKin_Li 阅读(36) 评论(0) 推荐(0) 编辑
摘要:什么是 SRE(站点可靠性工程)? 概述 站点可靠性工程(SRE)是 IT 运维的软件工程方案。SRE 团队使用软件作为工具,来管理系统、解决问题并实现运维任务自动化。 SRE 执行的任务以前通常由运维团队手动执行,或者交给使用软件和自动化来解决问题和管理生产系统的工程师或运维团队执行。 在创建可扩 阅读全文
posted @ 2022-12-25 17:45 MoKin_Li 阅读(117) 评论(0) 推荐(0) 编辑
摘要:To check if a list of words is in a string using Python, the easiest way is with list comprehension. >>> list_of_words = ["this","words","string"] >>> 阅读全文
posted @ 2022-12-23 00:45 MoKin_Li 阅读(23) 评论(0) 推荐(0) 编辑
摘要:https://theprogrammingexpert.com/category/python/ 阅读全文
posted @ 2022-12-22 00:06 MoKin_Li 阅读(16) 评论(0) 推荐(0) 编辑
摘要:To perform ceiling division in Python, you can define your own function and utilize the floor division operator //. >>> def ceiling_division(x,y): ... 阅读全文
posted @ 2022-12-22 00:02 MoKin_Li 阅读(50) 评论(0) 推荐(0) 编辑