demo_ref_divmod.py:
x = divmod(5, 2) print(x)
C:\Users\My Name>python demo_divmod.py
(2, 1)