책 내용에 대한 무단배포 방지를 위해 최소한으로 정리
import os
from os.path import exists
dir_name = input('새로 생성할 디렉토리 이름을 입력하세요:')
if not exists(dir_name):
os.mkdir(dir_name)
print(f'{dir_name} 디렉토리를 생성했습니다')
else:
print(f'{dir_name}은(는) 이미 존재합니다.')
책 내용에 대한 무단배포 방지를 위해 최소한으로 정리
import os
from os.path import exists
dir_name = input('새로 생성할 디렉토리 이름을 입력하세요:')
if not exists(dir_name):
os.mkdir(dir_name)
print(f'{dir_name} 디렉토리를 생성했습니다')
else:
print(f'{dir_name}은(는) 이미 존재합니다.')
Comments