import os def reboot_system(): os.system('reboot') if __name__ == "__main__": reboot_system()