Write a script in Python that automatically creates a directory structure for each user in a csv

Write a script in Python that automatically creates a directory structure for each user in a csv file.e.g.jmurphy – docs – source – imagesIt also copies a readme.txt file to the folder.The csv file has 1 line. e.g.jmurphy,mobrien,koconnor,bmulcahyYou need to create 3 files:createDirs.pyusers.csvreadme.txt

Read More