摘要:
操作SQL数据库,Python使用的是版本2.7,但是在运行的时候出现了异常错误UnicodeEncodeError:'ascii' codec can't encode characters in position 0-78: ordinal not in range(128),Unicode编码 阅读全文
摘要:
开价蓝屏,显示: Windows failed to start. A recent hardware or software change might be the case.to fix the problem: 1.Insert your windows installation disc a 阅读全文
摘要:
Queue Queue是python标准库中的线程安全的队列(FIFO)实现,提供了一个适用于多线程编程的先进先出的数据结构,即队列,用来在生产者和消费者线程之间的信息传递 基本FIFO队列 class Queue.Queue(maxsize=0) FIFO即First in First Out,先 阅读全文