标签: python random numbers cython
我如何获得更多随机种子?我只得到~32k随机数...
In [3]: %load_ext cythonmagic In [4]: %%cython from libc.stdlib cimport rand, srand, RAND_MAX cpdef test(): return RAND_MAX In [5]: test() Out[5]: 32767