Spiderman o0o
from Tkinter import *   VentanaP = Tk()  VentanaP.title("Spiderman o0o")  poly = Canvas(VentanaP, width=400, heigh=400, bg='yellow')  poly.pack()  poly.create_polygon(100,0,  110,0,  110,30,  120,30,  120,40,  130,40,  130,50,  140,50,  140,60,  150,60,  150,70,  170,70,  170,80,  180,80,  180,90,  190,90,  190,100,  200,100,  200,120,  190,120,  190,130,  170,130,170,140,180,140,180,160,170,160,170,170,160,170,160,180,140,180,140,190,150,190,150,200,160,200,160,210,170,210,170,280,160,280,160,290,150,290,150,300,130,300,130,310,80,310,80,300,60,300,60,290,50,290,50,280,40,280,40,210,50,210,50,200,60,200,60,190,70,190,70,180,50,180,50,170,40,170,40,160,30,160,30,140,40,140,40,130,20,130,20,120,10,120,10,100,20,100,20,90,30,90,30,80,40,80,40,70,60,70,60,60,70,60,70,50,80,50,80,40,90,40,90,30,100,30, fill="black", outline='black')  poly.create_polygon(  100,40,90,40,90,50,80,50,80,60,70,60,70,70,60,70,60,80,40,80,40,90,30,90,30,100,20,100,      20,120,...