python
bald
在读研究生,只是做一些微小的记录。
展开
-
python 基本函数之每天一个写bug小技巧 [useful function! -- something you will always use!]
目录testtest原创 2020-08-26 01:03:45 · 513 阅读 · 0 评论 -
object of type 'NoneType' has no len() -- python append 的大坑
我们都知道,python list 有好几种添加元素的方法:appendextend+然而这几种是有区别的,最坑的区别就是,使用append时,没有返回值也就是说,当在某个函数func()中传入 func(my_list.append(1)) 的话,往往是会报错的,因为传进去的是 None...原创 2019-09-16 21:24:00 · 8918 阅读 · 1 评论 -
python 生成requirements.txt 文件
1. pip生成生成当前python环境下的requirements.txt文件,即当前环境下的包版本直接敲命令pip freeze > requirements.txt 即可根据requirements.txt按照包有了requirements.txt怎么下载相应版本:pip install -r requirements.txt2.conda生成conda list -...原创 2019-09-11 19:17:40 · 292 阅读 · 0 评论 -
python networkx 用法 -- 每天一个写 bug 小技巧
创建图import networkx as nxG = nx.Graph() # 创建空图G = nx.karate_club_graph() # 创建karate图,经典图之一(还有很多其他的可视化import networkx as nximport matplotlibmatplotlib.use("TkAgg")import matplotlib.pyplot as ...原创 2019-08-31 22:22:43 · 531 阅读 · 0 评论 -
tensorboard持续更新
查看loss曲线命令行:tensorboard --logdir=event所在的文件夹路径注意:是文件夹!接着会显示一个地址,点开,但是我从来没有成功打开过,直接在地址栏敲:http://localhost:6006 就可以...原创 2019-08-21 19:33:04 · 1268 阅读 · 0 评论 -
numpy random 持续更新
np.random.rand(d0,d1, …, dn)生成[0,1)之间的数np.random.randn(d0,d1, …, dn)标准正态分布np.random.randint(low, high=None, size=None, dtype = ‘I’)返回整数,区间为[low,high)size是数组大小...原创 2019-08-21 14:38:48 · 158 阅读 · 0 评论 -
leetcode problem 399. Evaluate Division
20190719DescriptionEquations are given in the format A / B = k, where A and B are variables represented as strings, and k is a real number (floating point number). Given some queries, return the a...原创 2019-07-19 22:02:41 · 170 阅读 · 0 评论 -
networkx.draw() unrecognized selector sent to instance 0x7fe5e85f7fd0 解决 [mac] python3
import networkx as nx import matplotlib.pyplot as plt# generate a networkG = nx.random_graphs.barabasi_albert_graph(100,1) #生成一个BA无标度网络Gnx.draw(G) #绘制网络Gplt.savefig("...原创 2019-04-13 17:13:33 · 370 阅读 · 0 评论