Last active
April 12, 2022 14:13
-
-
Save HemersonTacon/aebd45bdd8fe556431cbb9ca75034180 to your computer and use it in GitHub Desktop.
Postfix templates for PyCharms plugin "Custom Postfix Templates"
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
.var : New variable | |
ANY → $var$ = $expr$ | |
.str : Cast to string | |
ANY → str($expr$) | |
.fstr : Apply f-string formatting | |
ANY → f"{$expr$}" | |
.list : Cast to list | |
ANY → list($expr$) | |
.float : Cast to float | |
ANY → float($expr$) | |
.int : Cast to int | |
ANY → int($expr$) | |
.tuple : Cast to tuple | |
ANY → tuple($expr$) | |
.set : Cast to set | |
ANY → set($expr$) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment