本文介绍了Pycharm中是否有键盘快捷键可用于重命名特定变量?的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

我正在使用 Pycharm 进行Python编码,并且我想在整个代码中更改特定变量的名称.此操作有键盘快捷键吗?

I'm using Pycharm for Python coding, and I want to change the name of a specific variable all over the code. is there any keyboard shortcut for this operation?

在Matlab中,我可以使用 ctrl + shift .

In Matlab I can use ctrl + shift.

例如:

old_name=5
x=old_name*123

将变为:

new_name=5
x=new_name*123

无需更改两个old_name引用.

谢谢!

推荐答案

突出显示您的old_name并按 +

Highlight your old_name and hit +

这篇关于Pycharm中是否有键盘快捷键可用于重命名特定变量?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!

11-01 15:46