How do you display the path to the current working directory in Python? (select two)
How do you display the path to the current working directory in Python? (select two)
a. from pathlib import Path
print(Path.cwd())
b. pwd
c. print(os.getcwd())
d. import os
print(os.getcwd())