Python Forum
Is there a way to search for function call? - Printable Version

+- Python Forum (https://python-forum.io)
+-- Forum: Python Coding (https://python-forum.io/forum-7.html)
+--- Forum: General Coding Help (https://python-forum.io/forum-8.html)
+--- Thread: Is there a way to search for function call? (/thread-23690.html)



Is there a way to search for function call? - mtran - Jan-12-2020

Hello,
I am new to Anaconda Spyder , I would like to ask if there is a way to search for a function call in my project. For example, I have a function called my_function () and I want to search for places in my project where I make a call to my_function.
Thanks.


RE: Is there a way to search for function call? - michael1789 - Jan-12-2020

CTRL-F and type it in.


RE: Is there a way to search for function call? - mtran - Jan-14-2020

Thank you so much.