python 中 *\的理解

在http://neuralnetworksanddeeplearning.com/chap1.html中,有这么一行代码:

 delta = self.cost_derivative(activations[-1], y) * \
            sigmoid_prime(zs[-1])

其中,*表示乘号,‘\’表示换行符。通常当一行无法容纳一句代码时,这么表示,例如:

delta = 3 *\
2

delta: 6

你可能感兴趣的:(python)