I wanted to do profiling for my python code written using Pycharm IDE. I created one function which calls multiple functions.
def f1():
#do something
def f2():
#do something
def f3():
#do something
def main():
f1()
f2()
f3()
I wanted to do profiling for this code. I wanted to know all the ways it can be done in Pycharm IDE. The suggestion says that it uses cProfiler but I'm unable to find profile option itself in Pycharm. By the way, I'm having PycharmCE-2019 version and python3.6. Is there we trigger the profile option to be visible in Pycharm CE?
Any help is appreciated.