项目地址:https://git.io/pytips 0x03 – Python 列表推导 0x02 中提到的 map/filter 方法可以通过简化的语法快速构建我们需要的列表(或其它可迭代对象),与它们功…
分类:python3.5
Theano - 导数
计算梯度 计算x^2的梯度 import numpy import theano import theano.tensor as T from theano import pp x = T.dscalar('x') y …
PyTips 0x05 - Python 函数参数与解包
项目地址:https://git.io/pytips 函数调用的参数规则与解包 Python 的函数在声明参数时大概有下面 4 种形式: 不带默认值的:def func(a): pass 带有默认值的:def func(…