Cómo devolver el número en Python binaria

 pythonCopytemp = format(10, "b")

print(temp)
Delightful Dingo