mirror of
https://gitflic.ru/project/openide/openide.git
synced 2025-12-14 18:05:27 +07:00
10 lines
170 B
Python
10 lines
170 B
Python
from builtins import staticmethod, divmod
|
|
|
|
quotient, rem = divmod(42, 3)
|
|
divmod
|
|
|
|
class MyClass(object):
|
|
@staticmethod
|
|
@staticmethod
|
|
def method():
|
|
pass |