我正在使用 spyder 并且我有一个类似这样的代码
detector_x, detector_y, smeared_x, smeared_y = gamma_detection(decay_positions, cos_theta, phi)
对于其中第二i中decay_positions超过字符的在一条线上的推荐量(像90)。我有动态 PEP8 分析,所以它自然会给我的代码分析警告。那么在这种情况下,正确的 PEP8 方法是什么?是吗
detector_x, detector_y, smeared_x, smeared_y = \
gamma_detection(decay_positions, cos_theta, phi)
从技术上讲,它仍在运行,但它给了我警告
E122 continuation line missing indentation or outdented
或者是
detector_x, detector_y, smeared_x, smeared_y = gamma_detection(
decay_positions, cos_theta, phi)
或者是
detector_x, detector_y, smeared_x, smeared_y = gamma_detection(
decay_positions, cos_theta, phi)
温温酱
慕哥6287543
相关分类