进程:最小的数据单元 线程:最小的执行单元 一: 1:线程1 import threading #线程 import time def Music(): print("Listen Music Begin %s" %time.ctime()) time.sleep() print("Listen Music End %s" %time.ctime()) def Game(): print("Play Game Begin %s" %time.ct…
一:迭代器: 最大的特点:节省内存 1.1 迭代器协议 a:对象必须提供一个next方法, b:执行方法要么返回迭代中的下一项,要么抛弃一个Stopiteration异常, c:只能向后不能向前. 1.2 可迭代对象 实现了迭代器协议的对象.(对象内部定义一个__iter__()方法) 1.3 使用迭代器访问对象 for map sum max min 注意:(字符串,列表,元组,字典,集合,文件对象)这些都不是可迭代对象,只不过for循环调用了他们内部的__iter__()方法,把他们变成了可…
1:算数运算符 + - * / ** % // 2: 成员运算符 in not in name = """张三""" if "张" in name: print("OK") if "李" not in name: print("Not in") # 输出结果 # OK # Not in 3:比较运算符 True False == > < >= <…