数据结构和算法
木落西风伤南华
这个作者很懒,什么都没留下…
展开
-
第一次发布博客
学习使用中转载 2018-11-26 11:00:30 · 103 阅读 · 0 评论 -
谈下python的GIL
GIL 是python的全局解释器锁,同一进程中假如有多个线程运行,一个线程在运行python程序的时候会霸占python解释器(加了一把锁即GIL),使该进程内的其他线程无法运行,等该线程运行完后其他线程才能运行。如果线程运行过程中遇到耗时操作,则解释器锁解开,使其他线程运行。所以在多线程中,线程的运行仍是有先后顺序的,并不是同时进行。 多进程中因为每个进程都能被系统分配资源,相当于每个进程有了...转载 2019-01-07 10:54:15 · 228 阅读 · 0 评论 -
python list转换字符串报错TypeError: sequence item 0: expected str instance, int found
在这里插入代码片 今天敲小例子,报了错TypeError: sequence item 0: expected str instance, int found 小例子:list1=[1,‘two’,‘three’,4] print(’ '.join(list1)) 以为会打印 1 two three 4 结果报了错 Traceback (most recent call last):  ...转载 2019-01-09 10:50:27 · 381 阅读 · 0 评论 -
python 贝叶斯网络
逛知乎看到的,老是忘记,记一下: import networkx as nx graph = nx.from_numpy_matrix(Matrix) networkx自带函数将邻接矩阵转为网络图转载 2019-02-18 11:33:41 · 1851 阅读 · 0 评论