摘要: Day 27 IPC interprocess communication IPC definition Exchange of data between one process and another, either within the same computer or over a netwo 阅读全文
posted @ 2021-01-21 13:50 fengshili0721 阅读(63) 评论(0) 推荐(0) 编辑
摘要: Day 26 Process State Created Running Terminated Blocked Waiting/Ready Zombie process A zombie process is a process whose execution is completed but it 阅读全文
posted @ 2021-01-20 14:24 fengshili0721 阅读(75) 评论(0) 推荐(0) 编辑
摘要: Day 25 Concurrent Programming in Python What is concurrency并发? Concurrency is working on multiple things at the same time. In Python, this can be done 阅读全文
posted @ 2021-01-19 16:15 fengshili0721 阅读(73) 评论(0) 推荐(0) 编辑
摘要: Day 24 Network Programming 一 TCP sockets As you’ll see shortly, we’ll create a socket object using socket.socket() and specify the socket type as sock 阅读全文
posted @ 2021-01-18 22:30 fengshili0721 阅读(65) 评论(0) 推荐(0) 编辑
摘要: Day 22 23 Network Programming 一 OSI model The Open Systems Interconnection model (OSI model) is a conceptual model that characterises and standardises 阅读全文
posted @ 2021-01-16 23:41 fengshili0721 阅读(89) 评论(0) 推荐(0) 编辑
摘要: 一 polymorphism /ˌpɒlɪˈmɔːfɪz(ə)m/ 多态 Polymorphism is taken from the Greek words Poly (many) and morphism (forms). It means that the same function name 阅读全文
posted @ 2021-01-13 12:22 fengshili0721 阅读(49) 评论(0) 推荐(0) 编辑
摘要: 一 Inheritance继承 Inheritance in Python Inheritance is a powerful feature in object oriented programming. It refers to defining a new class with little 阅读全文
posted @ 2021-01-12 18:42 fengshili0721 阅读(62) 评论(0) 推荐(0) 编辑
摘要: 一 everything in python is an object In object-oriented programming languages like Python, an object is an entity that contains data along with associa 阅读全文
posted @ 2021-01-11 15:54 fengshili0721 阅读(74) 评论(0) 推荐(0) 编辑
摘要: Day 18 OOP 面向对象编程 一 what is OOP? Python is a multi-paradigm/ˈpærədaɪm/ 范例programming language. It supports different programming approaches. One of th 阅读全文
posted @ 2021-01-09 08:08 fengshili0721 阅读(103) 评论(0) 推荐(0) 编辑
摘要: Day 17 Frequently-used modules 一 hashlib module Python hashlib hashing function takes variable length of bytes and converts it into a fixed length seq 阅读全文
posted @ 2021-01-07 17:28 fengshili0721 阅读(64) 评论(0) 推荐(0) 编辑