Extract Constant
The Extract Constant refactoring makes your source code easier to read and maintain. It also helps you avoid using hard-coded constants without any explanations about their values or purpose.
On this page:
Example
To extract a Python constant in-place
The in-place refactorings are enabled in PyCharm by default. So, if you haven't changed this setting, the Extract Constant refactoring for Python is performed in-place, right in the editor.
- Place the cursor within the expression or declaration of a variable to be replaced by a constant.
- Do one of the following:
-
If more than one expression is detected for the current cursor position, the Expressions list appears.
If this is the case, select the required expression. To do that, click the expression.
Alternatively, use the Up and Down arrow keys to navigate to the expression of interest,
and then press Enter to select it.
- If more than one occurrence of the expression is found within the class, specify whether you wish
to replace only the selected occurrence, or all the found occurrences with the new constant.
- Specify the name of the constant. Select the name from the list or type the name in the box with a red
border.
- To complete the refactoring, press Tab or Enter.
If you haven't completed the refactoring and want to cancel the changes you have made, press Escape.
To extract a constant using the dialog box
If the Enable in-place refactorings check box is cleared on the Editor settings, the Extract Constant refactoring is performed by means of the Extract Constant Dialog dialog box.

- In the Extract Constant Dialog dialog that opens, specify the name of the new constant.
- To automatically replace all occurrences of the selected expression (if it is found more than once), select the option Replace all occurrences.
- Click OK to create the constant.