将参数放在不同的行 PyCharm
Put arguments on separate lines PyCharm
我一直在四处寻找,我似乎无法找到一种方法来在 PyCharm 中启用/创建将函数参数放在不同行上的意图。
在 MacO 上使用 context action
-> Alt + Enter
,代码如下
package main
import "fmt"
func sumThree(a int, b int, c int) int {
return a + b + c
}
func main() {
sumOfThee := sumThree(1, 2, 3)
fmt.Println(sumOfThee)
}
我可以在 GoLand 中做到这一点:
但是我如何在 PyCharm 中执行相同的操作,即 Alt + Enter
?
使用此代码,没有这样的操作:
def sum_three(a: int, b: int, c: int):
return a + b + c
sum_of_three = sum_three(a=1, b=2, c=3)
我明白了:
我搜索了选项,但似乎 none 可用于 Python:
在PyCharm中尚不可用,请查看并关注相应的问题:PY-45729加上与部分相关的内容。
我一直在四处寻找,我似乎无法找到一种方法来在 PyCharm 中启用/创建将函数参数放在不同行上的意图。
在 MacO 上使用 context action
-> Alt + Enter
,代码如下
package main
import "fmt"
func sumThree(a int, b int, c int) int {
return a + b + c
}
func main() {
sumOfThee := sumThree(1, 2, 3)
fmt.Println(sumOfThee)
}
我可以在 GoLand 中做到这一点:
但是我如何在 PyCharm 中执行相同的操作,即 Alt + Enter
?
使用此代码,没有这样的操作:
def sum_three(a: int, b: int, c: int):
return a + b + c
sum_of_three = sum_three(a=1, b=2, c=3)
我明白了:
我搜索了选项,但似乎 none 可用于 Python:
在PyCharm中尚不可用,请查看并关注相应的问题:PY-45729加上与部分相关的内容。