摘要: 原文来自于morvan python, https://morvanzhou.github.io/tutorials/python-basic/threading import threading import time print threading.active_count() print threading.enumerate() print threading.current_th... 阅读全文
posted @ 2017-11-20 10:50 Hello_to_Sa's_world 阅读(118) 评论(0) 推荐(0) 编辑
摘要: To be able to run SUMO on Linux, just follow these four steps:Install all of the required tools and librariesGet the source codeBuild the SUMO binariesInstall the SUMO binaries to another path (option... 阅读全文
posted @ 2017-10-20 11:23 Hello_to_Sa's_world 阅读(1681) 评论(0) 推荐(0) 编辑
摘要: 1) install py2exehttps://sourceforge.net/projects/py2exe/files/py2exe/0.6.9/ 根据相应的 python version及 系统位数(32 or 64)选择相应版本2)教程:http://www.py2exe.org/index.cgi/Tutorial 自我编程:aim file: new.pyprint "hello,... 阅读全文
posted @ 2017-10-04 01:12 Hello_to_Sa's_world 阅读(2328) 评论(0) 推荐(0) 编辑
摘要: 李弘毅 一天了解深度学习http://speech.ee.ntu.edu.tw/~tlkagk/courses.html来自为知笔记(Wiz) 阅读全文
posted @ 2017-10-03 21:01 Hello_to_Sa's_world 阅读(162) 评论(0) 推荐(0) 编辑
摘要: test_sa.py # -*- coding: utf-8 -*- """ User-defined parameters """ global a a=5 def change_a(): global a #模块内使用a,必须使用global变量 a+=3 print"local a:"+str(a) def print_a(): global a #... 阅读全文
posted @ 2017-10-03 20:55 Hello_to_Sa's_world 阅读(1626) 评论(0) 推荐(0) 编辑
摘要: 此篇写给已经安装过mysql卸载再次安装的童鞋。彻底卸载:1)控制面板将所有关于Mysql相关的内容卸载2)删除相关空文件夹: 即下面路径的mysql文件夹 \MySQLC:\Program Files\MySQL or C:\Program Files(x86)C:\ProgramData(该文件夹隐藏取消隐藏)C:\Users\Lenovo\AppData\Roaming3)删除注册表文件夹... 阅读全文
posted @ 2017-10-03 20:54 Hello_to_Sa's_world 阅读(140) 评论(0) 推荐(0) 编辑