Bhuwan
Results
1
issues of
Bhuwan
import os from PIL import Image folder_name, new_folder_name = input().split() way = os.path.abspath(new_folder_name) if not os.path.isdir(way) : os.makedirs(new_folder_name) with os.scandir(folder_name) as files : for each in files : img =...