摘要:
EventManager.py test.py 阅读全文
摘要:
1 import time 2 3 # 2种表示时间的方法: 4 # (1)时间戳,从1970.1.1开始 5 # (2)一个9个整数的元组 6 # 这个元组内容: 7 # year (including century, e.g. 1998) 8 # month (1-12) 9 # day (1-31) 10 ... 阅读全文
摘要:
1 import socket # module 2 import threading 3 import time 4 5 """ 6 FUNCTIONS 7 create_connection(address, timeout=, source_address=None) 8 Connect to *address* and retu... 阅读全文