반응형
Python Script to Shutdown Computer
컴퓨터를 종료하는 Python 스크립트
Python은 다양한 기능으로 인해 널리 사용되는 스크립팅 언어입니다. 이 기사에서는 컴퓨터를 종료하는 Python 스크립트를 작성합니다. Python 스크립트를 사용하여 컴퓨터/PC/노트북을 종료하려면 “ ” 코드가 있는 기능을
사용해야 합니다
import os
shutdown = input("Do you wish to shutdown your computer ? (yes / no): ")
if shutdown == 'no':
exit()
else:
os.system("shutdown /s /t 1")
반응형
'프로그래밍 > Python' 카테고리의 다른 글
Python Dictionary Methods (0) | 2023.04.26 |
---|---|
[python] swapping variables, Flattening a list of lists (0) | 2023.04.18 |
python Quiz - What will be the datatype of the var in the below code snippet? (0) | 2023.04.07 |
[python] 구문 퀴즈, 파이썬 (0) | 2023.03.29 |
[python] 구문 퀴즈, 파이썬 (0) | 2023.03.23 |