摘要:
迭代器:for循环实际是对容器使用iter(),iter()实际会调用该对象的__iter__()方法,返回一个定义了__next__()方法的迭代器对象,该迭代器可以逐一访问容器中的元素,使用next()内置函数调用该对象的__next__()方法,next()越界触发StopIteration异 阅读全文
摘要:
import asyncio #运行器 async def hello_async(delay, words): await asyncio.sleep(delay) print(words) #协程与任务 async def test_async(): #等待第一个协程hello_async执行完 阅读全文
摘要:
多进程 多线程 启动并行任务 阅读全文
摘要:
常用规则示例 修改chain默认策略 #filter表在INPUT chain默认策略为ACCEPT[root@iptables_host02 ~]# iptables -nvL INPUTChain INPUT (policy ACCEPT 0 packets, 0 bytes)#将filter表 阅读全文
摘要:
iptables 基础语法 阅读全文