📜  使用Python打开 C、D 或 E 等计算机驱动器

📅  最后修改于: 2022-05-13 01:54:53.385000             🧑  作者: Mango

使用Python打开 C、D 或 E 等计算机驱动器

你有没有想过只需键入 C、D 或 E 就可以打开驱动器,然后驱动器就会打开。这可以通过使用Python来实现。因此,为了执行此任务,我们使用OS库的os.startfile()方法。此方法使用其关联的程序启动一个文件。

现在让我们看看代码:

Python3
# import library
import os
  
# take Input from the user 
query = input("Which drive you have to open ? C , D or E: \n")
  
# Check the condition for 
# opening the C drive
if "C" in query or "c" in query:
  os.startfile("C:")
    
# Check the condition for 
# opening the D drive
elif "D" in query or "d" in query:
  os.startfile("D:")
  
# Check the condition for 
# opening the D drive
elif "E" in query or "e" in query:
  os.startfile("E:")
  
else:
    print("Wrong Input")


输出: