windows下启动nginx报错:
nginx: [emerg] CreateFile() “D:\桌面\nginx-1.12.0/conf/nginx.conf” failed (3: The system cannot find the path specified)
路径中带中文了,换个目录就好了
Python 中组合函数 C(n,m) n!/(m!*(n-m)!) 有两个:
1.itertools.combinations
返回一个对象,其自带指针函数 因此有可以使用 for,例如
a [1,2,3,4]
c itertools.combinations(a,2)
for i in c:
print i
其返回结果为
(1, 2)
(1, 3)
(1, 4)…