The static methods in the Python are logically linked to the class and exist within it, but they are not a member method or a class method. How can I represent it in a class diagram , How to distinguish it from the rest of the methods?
// Suppose this is the method
@staticmethod
def is_work(day):
if day.weekday() == 4 or day.weekday() == 5:
return False
return True