책 내용에 대한 무단배포 방지를 위해 최소한으로 정리
import os
newfolder = input('새로 생성할 디렉토리 이름을 입력하세요:')
try:
os.mkdir(newfolder)
print(f'{newfolder} 디렉토리를 새로 생성했습니다.')
except Exception as e:
print(e)
책 내용에 대한 무단배포 방지를 위해 최소한으로 정리
import os
newfolder = input('새로 생성할 디렉토리 이름을 입력하세요:')
try:
os.mkdir(newfolder)
print(f'{newfolder} 디렉토리를 새로 생성했습니다.')
except Exception as e:
print(e)
Comments