I am new to VS code and Python :). I am trying :)
Java is my main coding language and I use(love) IntelliJ IDEA for coding. I chose VS code for python(for many reasons I cannot control)
In InteliJ when coding java , InteliJ code assist prompt for creation of new methods if they not exists, I found this very useful( check attached image)

I couldn't find equivalence in VS code for python, Is there is any extension I can use to get this behaviour and many other InteliJ assists( eg: suggestions) ?
Two suggestions that might help:
1. My Code Actions extension
After installation, add configuration in
settings.jsonaccording to the format.E.g:
Effect:
2. Custom code snippets
open in sequence File > Preferences > Configure User Snippets. Select python in the command palette. This will create a
python.jsonfile in which you can customize the code segment according to the rules.E.g:
Effect: