p = Path("…/…/Datasets/Images/")
dirs = p.glob("*")
for folder_dir in dirs:
print(folder_dir)
what is wrong in this, i am getting no error but no output is coming and for the rest of the commands output is comig
p = Path("…/…/Datasets/Images/")
dirs = p.glob("*")
for folder_dir in dirs:
print(folder_dir)
what is wrong in this, i am getting no error but no output is coming and for the rest of the commands output is comig