I agree with Cat Plus Plus's answer. However, if you know this will only be used on unix-like OSes, you can use external calls to the shell commands mkdir, chmod, and chown, where you can give extra flags to recursively effect directories:
>>> import subprocess
>>> subprocess.check_output(['mkdir', '-p', 'first/second/third'])
# Equivalent to running "mkdir -p first/second/third" from the shell which will
# create first/second/third making parent (-p) directories if they don't exist.
>>> subprocess.check_output(['chown', '-R', 'dail:users', 'first'])
# change owner to dail, and group to users group for first and all subdirectories. (-R for recursive)
>>> subprocess.check_output(['chmod', '-R', 'g+w', 'first'])
# add group write permissions to first and all subdirectories.
EDIT: I originally used commands which was a bad choice, as its deprecated and vulnerable to injection attacks. (E.g., if a user gave input to create a directory called first/;rm -rf --no-preserve-root /; you could potentially delete all directories).
EDIT2: If you are using python less than 2.7 use check_call rather than check_output. See http://docs.python.org/library/subprocess.html#convenience-functions