python关机程序代码

您所在的位置:网站首页 python自动重启程序 python关机程序代码

python关机程序代码

2023-03-24 03:08| 来源: 网络整理| 查看: 265

python

关机程序代码

_python

实现的重启关机程序实例

本⽂实例讲述了Python实现的重启关机程序的⽅法,对Python程序设计有⼀定的参考价值。具体⽅法如下:

实例代码如下:

#!/usr/bin/python

#coding=utf-8

import time

from os import system

runing = True

while runing:

input = raw_input('关机(s)OR重启(r)?(q退出)')

input = input.lower()

if input == 'q' or input =='quit':

runing = False

print '程序退出'

break

seconds = int(raw_input('请输⼊暂停时间(单位:秒):'))

time.sleep(seconds)

print '暂停时间:', seconds

runing = False

if input == 's':

print '关机ing'

system('halt')

elif input == 'r':

print '重启ing'

system('reboot')

else:

print '程序错误重新输⼊'

runing = True

print '程序结束~~~!'

该实例在linux下测试通过,windows的话需要判断执⾏命令。

您可能感兴趣的⽂章:python通过微信发送邮件实现电脑关机python定时关机⼩脚本python实现电脑⾃动关机python实现远程通过⽹络邮

件控制计算机重启或关机Python3.4实现远程控制电脑开关机⽤python写⼀个windows下的定时关机脚本(推荐)利⽤Python实现

Windows定时关机功能python实现Windows电脑定时关机



【本文地址】


今日新闻


推荐新闻


CopyRight 2018-2019 办公设备维修网 版权所有 豫ICP备15022753号-3