
Christopher S. answered 05/07/19
Christo: Online programming and Computer Literacy tutor
Yes, and it is quite simple.
As you can see by this example (from https://www.geeksforgeeks.org/class-method-vs-static-method-python/), all you need is to add the @staticmethod decorator.
Additionally there is an older way to do this.
Source: https://www.programiz.com/python-programming/methods/built-in/staticmethod/
As you can see, a function (addNumbers()) is created and then extablished as a static method by line 7 (The line below the comment).