I tried get Mac adders in python 3.6.2,i wrote code bellow to get it:
from uuid import getnode
address=getnode()
h = iter(hex(address)[2:].zfill(12))
print(":".join(i + next(h) for i in h))
but it print mistake,for example,if my Mac adders is ff:ff:ff:ff:ff:12,it print ff:ff:ff:ff:ff:25. How fix it?