Você pode executar comandos do terminal em python.
As linhas do terminal são:
rfkill block bluetooth
e
rfkill unblock bluetooth
Para executá-los em python:
import os
os.system("rfkill block bluetooth")
import os
os.system("rfkill unblock bluetooth")
Ou você pode usar:
subprocess.call(["rfkill", "block", "bluetooth"])
subprocess.call(["rfkill", "unblock", "bluetooth"])