I am using Pycharm to encode Python, and I want to change the name of a specific variable throughout the code. is there a keyboard shortcut for this operation?
In Matlab, I can use ctrl + shift.
For instance:
old_name=5
x=old_name*123
will become:
new_name=5
x=new_name*123
without having to change both links old_name.
Thank!
source
share