# -*- coding: utf-8 -*- """ Created on Wed Nov 17 11:23:32 2021 @author: Studente """ import images nero = (0,0,0) bianco = (255,255,255) rosso = (255,0,0) verde = (0,255,0) blu = (0,0,255) pink_shock = (255, 26, 198) verde_acqua = (51, 204, 204) def crea_immagine_sfondo(altez, lungh, colore): return [[colore]*lungh for _ in range(altez)]