¿Alguna vez se ha preguntado si puede abrir sus unidades simplemente escribiendo C, D o E y luego que las unidades estén abiertas? Esto puede ser posible usando Python. Entonces, para realizar esta tarea, estamos usando el método os.startfile() de la biblioteca del sistema operativo . Este método inicia un archivo con su programa asociado.
Sintaxis: os.startfile(nombre_archivo)
Retorno: Ninguno.
Ahora veamos el código:
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")
Producción:
Publicación traducida automáticamente
Artículo escrito por abhisheksrivastaviot18 y traducido por Barcelona Geeks. The original can be accessed here. Licence: CCBY-SA