Respuesta :
Answer:
Following are the complete code to this question:
import os #import package
def parent_directory():#defining a method parent_directory
dir = os.getcwd()#defining dir that stores the getcwd method value
relative_parent = os.path.join(dir) #defining relative_parent variable that uses join method to adds directory
return os.path.dirname(relative_parent)#use return keyword to return directory name
print(parent_directory())#use print method to call parent_directory method
Output:
/
Note:
This program is run the online compiler that's why it will return "/"
Explanation:
In the given Python code, we import the "os" package, after that a method "parent_directory" is defined, which uses the dir with the "getcwd" method that stores the current working directory.
- After that "relative_parent" variable is declared, which uses the join method to store the directory value and use the return keyword to returns its value.
- In the next step, the print method is used, which calls the method.
Functions are collection of code segments that are executed when called or evoked.
The complete function in Python, where comments are used to explain each line is as follows:
#This imports the os module
import os
#This defines the parent_directory function
def parent_directory():
#This gets file directory
dir = os.getcwd()
#This gets the complete directory
relative_parent = os.path.join(dir)
#This returns the directory name
return os.path.dirname(relative_parent)
print(parent_directory())
Read more about python functions at:
https://brainly.in/question/10211834