Logo and code

  • Instructions

    Add your logo in the twinboard as an image.

    Add the python code in the description of the image.

    Add your name as a title.

  • Your logos and codes

    Erwan

    import turtle

    def draw_circle(turtle, color, size, x, y):
    turtle.penup()
    turtle.color(color)
    turtle.fillcolor(color)
    turtle.goto(x,y)
    turtle.begin_fill()
    turtle.pendown()
    turtle.circle(size)
    turtle.penup()
    turtle.end_fill()
    turtle.pendown()

    tommy = turtle.Turtle()
    tommy.shape("turtle")
    tommy.speed(500)

    draw_circle(tommy, "red", 50, 25, 0)
    draw_circle(tommy, "white", 50, 0, 0)
    draw_circle(tommy, "blue", 50, -25, 0)

    tommy.penup()
    tommy.goto(0,-50)
    tommy.color('blue')
    tommy.goto(-70,-50)
    tommy.write("learn" , font=(None, 16, "bold"))
    tommy.color('white')
    tommy.goto(0,-50)
    tommy.write("the", font=(None, 16, "bold"))
    tommy.color('red')
    tommy.write("python !!", font=(None, 16, "bold"))
    tommy.goto(0,-80)

    Victor

    import turtle

    def draw_circle(turtle, color, size, x, y):
    turtle.penup()
    turtle.color(color)
    turtle.fillcolor(color)
    turtle.goto(x,y)
    turtle.begin_fill()
    turtle.pendown()
    turtle.circle(size)
    turtle.penup()
    turtle.end_fill()
    turtle.pendown()

    tommy = turtle.Turtle()
    tommy.shape("turtle")
    tommy.speed(500)

    draw_circle(tommy, "red", 60, 60, -30)
    draw_circle(tommy, "blue", 60, -60, -30)
    draw_circle(tommy, "white", 70, 0, -30)

    tommy.penup()
    tommy.goto(0,100)
    tommy.color('dark')
    tommy.write("let's learn python", align="center", font=(None, 16, "bold"))
    tommy.goto(0,-50)
    tommy.write("fun incoming (no)", align="center", font=(None, 16, "bold"))
    tommy.goto(0,-70)
    tommy.write("solve a problem to create an other !", align="center", font=(None, 16, "bold"))
    tommy.goto(0,-250)

    logo_MartinMajčin

    I am sending you my design of the project logo. Martin

    Saška, Alexandra

    import tkinter
    canvas=tkinter.Canvas()
    canvas.pack()
    canvas.create_rectangle(130,210,150,220,fill="darkgreen")
    canvas.create_rectangle(110,200,130,210,fill="darkgreen")
    canvas.create_rectangle(90,190,110,200,fill="darkgreen")
    canvas.create_rectangle(70,180,90,190,fill="darkgreen")
    canvas.create_rectangle(50,170,70,180,fill="darkgreen")
    canvas.create_rectangle(30,160,50,170,fill="darkgreen")
    canvas.create_rectangle(150,200,170,210,fill="darkgreen")
    canvas.create_rectangle(170,190,190,200,fill="darkgreen")
    canvas.create_rectangle(210,170,230,180,fill="darkgreen")
    canvas.create_rectangle(230,160,250,170,fill="darkgreen")
    canvas.create_rectangle(190,180,210,190,fill="darkgreen")

    canvas.create_rectangle(80,60,200,150,fill="black")
    canvas.create_rectangle(90,70,190,140,fill="white")
    canvas.create_rectangle(130,150,150,180,fill="red",outline="red")
    canvas.create_rectangle(120,180,160,170,fill="red",outline="red")

    canvas.create_oval(110,80,130,100,fill="black")
    canvas.create_oval(150,80,170,100,fill="black")
    canvas.create_rectangle(130,120,150,130,fill="red",outline="red")
    canvas.create_rectangle(110,110,120,120,fill="red")
    canvas.create_rectangle(160,110,170,120,fill="red")

    Stanislav Slivon

    import tkinter
    canvas = tkinter.Canvas()
    canvas.pack()
    canvas.create_rectangle(50, 50, 150, 150, fill='green')
    canvas.create_rectangle(80, 70, 130, 130,fill='white' )
    canvas.create_rectangle(50, 50, 80, 250, fill='green')
    canvas.create_rectangle(50, 242, 60, 250, fill='black')
    canvas.create_rectangle(70, 242, 80, 250, fill='black')
    canvas.create_rectangle(60, 250, 70, 265, fill='red')
    canvas.create_rectangle(80, 130, 100, 150, fill='brown')

    Matej.M
    Jacob Sirovatka

    import tkinter
    canvas = tkinter.Canvas()
    canvas.pack()

    def logo():
    canvas.create_rectangle(20,20,80,80,fill = 'blue')
    canvas.create_rectangle(40,40,60,60,fill = 'white')
    canvas.create_rectangle(20,80,40,120,fill = 'red')
    canvas.create_rectangle(100,20,120,80,fill = 'blue')
    canvas.create_rectangle(140,20,160,80,fill = 'red')
    canvas.create_rectangle(120,60,140,120,fill = 'white')
    logo()

    Marek Roman

    import tkinter
    c = tkinter.Canvas(width = 400, height = 400)
    c.pack()

    def logo():

    x = 200
    y = 200

    c.create_oval(x-150,y-150,x+150,y+150, fill = '#FFFFFF')
    c.create_rectangle(x-10,y-149,x+10, y-104, fill = '#646464')
    c.create_rectangle(x-10,y+149,x+10, y+104, fill = '#646464')
    c.create_rectangle(x-149,y-10,x-104, y+10, fill = '#646464')
    c.create_rectangle(x+149,y-10,x+104, y+10, fill = '#646464')
    c.create_oval(x-35,y-65,x-5,y-10, fill ='#306998')
    c.create_oval(x-28,y-60,x-12,y-15, fill ='#FFFFFF')
    c.create_rectangle(x+5,y-65,x+12,y-10,fill ='#FFD43B')
    c.create_rectangle(x+5,y-65,x+35,y-58,fill ='#FFD43B')
    c.create_rectangle(x+5,y-43,x+30,y-35,fill ='#FFD43B')
    c.create_rectangle(x-20,y+10,x+20,y+25, fill ='#4B8BBE')
    c.create_rectangle(x,y+25,x+20,y+30, fill ='#4B8BBE')
    c.create_rectangle(x-40,y+30,x+20,y+48, fill ='#4B8BBE')
    c.create_rectangle(x-40,y+48,x-25,y+70, fill ='#4B8BBE')
    c.create_rectangle(x-20,y+52,x+40,y+70, fill ='#FFE873')
    c.create_rectangle(x-20,y+70,x,y+75, fill ='#FFE873')
    c.create_rectangle(x-20,y+75,x+20,y+90, fill ='#FFE873')
    c.create_rectangle(x+25,y+30,x+40,y+52, fill ='#FFE873')
    c.create_oval(x-16,y+16,x-12,y+20, fill='#FFFFFF')
    c.create_oval(x+16,y+81,x+12,y+85, fill='#FFFFFF')

    logo()

    Ruben

    import turtle

    def draw_circle(turtle, color, size, x, y):
    turtle.penup()
    turtle.color(color)
    turtle.fillcolor(color)
    turtle.goto(x,y)
    turtle.setheading(90)
    turtle.begin_fill()
    turtle.pendown()
    turtle.circle(size,180)
    turtle.penup()
    turtle.end_fill()
    turtle.pendown()

    tommy = turtle.Turtle()
    tommy.shape("turtle")
    tommy.speed(500)

    listecouleur = ['blue', 'blue', 'white', 'white', 'red', 'red']

    for i in range(6):
    draw_circle(tommy, listecouleur[i], 140-20*i, 145-20*i,0)

    tommy.penup()
    tommy.goto(0,-50)
    tommy.color('blue')
    tommy.write("SLOVAKIA-FRANCE", align="center", font=(None, 32, "bold"))
    tommy.goto(0,-80)

    Marek Miklo logo
    Marek Miklo logo code
    Barbora Pobudová

    import tkinter
    canvas=tkinter.Canvas(width=300, height=300)
    canvas.pack()

    def logo():
    canvas.create_rectangle(20,80,30,120,fill="blue")
    canvas.create_rectangle(30,100,40,110,fill="blue")
    canvas.create_rectangle(30,80,40,90,fill="blue")
    canvas.create_rectangle(40,80,50,110,fill="blue")
    canvas.create_rectangle(60,80,70,100,fill="blue")
    canvas.create_rectangle(70,90,80,120,fill="blue")
    canvas.create_rectangle(70,90,80,120,fill="blue")
    canvas.create_rectangle(80,80,90,100,fill="blue")
    canvas.create_rectangle(100,90,130,80,fill="blue")
    canvas.create_rectangle(110,90,120,120,fill="blue")
    canvas.create_rectangle(110,90,120,120,fill="blue")
    canvas.create_rectangle(140,80,150,120,fill="yellow")
    canvas.create_rectangle(150,90,160,100,fill="yellow")
    canvas.create_rectangle(160,80,170,120,fill="yellow")
    canvas.create_rectangle(180,80,190,120,fill="yellow")
    canvas.create_rectangle(190,80,200,90,fill="yellow")
    canvas.create_rectangle(190,110,200,120,fill="yellow")
    canvas.create_rectangle(200,80,210,120,fill="yellow")
    canvas.create_rectangle(220,80,230,120,fill="yellow")
    canvas.create_rectangle(230,90,240,100,fill="yellow")
    canvas.create_rectangle(240,100,250,110,fill="yellow")
    canvas.create_rectangle(250,80,260,120,fill="yellow")
    canvas.create_rectangle(20,40,30,70,fill="blue")
    canvas.create_rectangle(30,30,70,50,fill="blue")
    canvas.create_rectangle(50,50,70,70,fill="blue")
    canvas.create_rectangle(70,50,110,70,fill="blue")
    canvas.create_rectangle(90,30,150,50,fill="blue")
    canvas.create_rectangle(130,10,200,30,fill="yellow")
    canvas.create_rectangle(180,10,200,70,fill="yellow")
    canvas.create_rectangle(180,50,240,70,fill="yellow")
    canvas.create_rectangle(220,20,240,70,fill="yellow")
    canvas.create_rectangle(240,10,270,50,fill="yellow")
    canvas.create_rectangle(260,20,270,30,fill="black")
    canvas.create_rectangle(270,40,280,50,fill="red")
    canvas.create_rectangle(280,30,290,40,fill="red")
    canvas.create_rectangle(280,50,290,60,fill="red")

    Jakub Škrobák

    import tkinter
    canvas=tkinter.Canvas()
    canvas.pack()

    canvas.create_rectangle(20,20,300,90,fill='white')
    canvas.create_rectangle(20,90,300,160,fill='blue')
    canvas.create_rectangle(20,160,300,230,fill='red')
    canvas.create_line(20,20,300,20,width=3)
    canvas.create_line(300,20,300,230,width=3)
    canvas.create_line(300,230,20,230,width=3)
    canvas.create_line(20,230,20,20,width=3)






    canvas.create_rectangle(110,90,185,115,fill='yellow',width=0)
    canvas.create_rectangle(125,64,185,82,fill='yellow',width=0)
    canvas.create_rectangle(160,82,185,90,fill='yellow',width=0)
    canvas.create_rectangle(110,115,130,155,fill='yellow',width=0)
    canvas.create_line(110,90,110,155,width=2)
    canvas.create_line(110,90,160,90,width=2)
    canvas.create_line(160,90,160,82,width=2)
    canvas.create_line(160,82,125,82,width=2)
    canvas.create_line(125,82,125,64,width=2)
    canvas.create_line(125,64,185,64,width=2)
    canvas.create_line(185,64,185,115,width=2)
    canvas.create_line(185,115,130,115,width=2)
    canvas.create_line(130,115,130,155,width=2)
    canvas.create_line(130,155,110,155,width=2)
    canvas.create_oval(135,70,141,76,fill='black')



    canvas.create_rectangle(135,125,210,150,fill='cyan',width=0)
    canvas.create_rectangle(135,150,160,158,fill='cyan',width=0)
    canvas.create_rectangle(135,158,195,176,fill='cyan',width=0)
    canvas.create_rectangle(190,85,210,125,fill='cyan',width=0)
    canvas.create_line(135,125,135,176,width=2)
    canvas.create_line(135,176,195,176,width=2)
    canvas.create_line(195,176,195,158,width=2)
    canvas.create_line(195,158,160,158,width=2)
    canvas.create_line(160,158,160,150,width=2)
    canvas.create_line(160,150,210,150,width=2)
    canvas.create_line(210,150,210,85,width=2)
    canvas.create_line(210,85,190,85,width=2)
    canvas.create_line(190,85,190,125,width=2)
    canvas.create_line(190,125,135,125,width=2)
    canvas.create_oval(179,164,185,170,fill='black')

    Michal Solár

    import tkinter

    c = tkinter.Canvas()
    c.pack()

    def logo():
    c.create_oval(20,20,260,260,fill='white')
    c.create_oval(130,120,150,140,fill='RoyalBlue')
    c.create_oval(130,100,150,120,fill='RoyalBlue')
    c.create_oval(130,80,150,100,fill='RoyalBlue')
    c.create_oval(130,60,150,80,fill='RoyalBlue')
    c.create_oval(125,30,155,60,fill='RoyalBlue')
    c.create_oval(135,140,145,150,fill='RoyalBlue')
    c.create_oval(140,40,150,50,fill='white')
    c.create_rectangle(138,20,142,30,fill='black')
    c.create_oval(120,120,130,130,fill='yellow')
    c.create_oval(148,130,168,150,fill='yellow')
    c.create_oval(168,140,188,160,fill='yellow')
    c.create_oval(186,150,216,180,fill='yellow')
    c.create_oval(201,160,211,170,fill='white')
    c.create_rectangle(216,171,226,175,fill='red')
    c.create_rectangle(250,138,260,142,fill='black')
    c.create_rectangle(138,250,142,260,fill='black')
    c.create_rectangle(20,138,30,142,fill='black')

    Nina Nagyová

    import tkinter
    c=tkinter.Canvas(width = 180, height = 240)
    c.pack()
    #vlajky
    c.create_rectangle(0,0,60,120, fill = "blue", outline="blue")
    c.create_rectangle(60,0,120,120, fill = "white", outline = "white")
    c.create_rectangle(120,0,180,120, fill = "red", outline = "red")
    c.create_rectangle(0,120,180,160, fill = "white", outline = "white")
    c.create_rectangle(0,160,180,200, fill = "blue", outline = "blue")
    c.create_rectangle(0,200,180,240, fill = "red", outline = "red")

    #slovenskyznak
    c.create_polygon(20,155,20,190,30,205,40,210,50,205,60,190,60,155, fill = "red", outline="black")
    c.create_oval(24,190,33,200, fill = "blue", outline = "blue")
    c.create_oval(30,185,50,205, fill = "blue", outline = "blue")
    c.create_oval(46,190,56,200, fill = "blue", outline = "blue")
    c.create_polygon(23,195,30,205,40,210,50,205,58,194, fill = "blue",outline = "blue")
    c.create_rectangle(38,162,42,185, fill = "white", outline = "white")
    c.create_rectangle(30,168,50,172, fill ="white", outline = "white")
    c.create_rectangle(27,176,53,180, fill = "white", outline = "white")

    c.create_line(20,190,30,205)
    c.create_line(30,205,40,210)
    c.create_line(40, 210,50,205)
    c.create_line(50,205,60,190)
    #hadík
    c.create_oval(80,110,120,150, fill = "yellow", outline = "black")
    c.create_oval(60,90,100,130, fill = "steel blue", outline = "black")
    c.create_oval(80,70,120,110, fill = "steel blue", outline = "black")
    c.create_oval(70,70,90,90, fill = "steel blue", outline = "black")
    c.create_oval(40,130,80,170, fill = "yellow", outline = "black")
    c.create_oval(130,150,150, 170, fill = "yellow", outline = "black")

    c.create_rectangle(80,70,100,130, fill = "steel blue", outline = "steel blue")
    c.create_rectangle(60,130,100,170, fill ="yellow", outline = "yellow")
    c.create_rectangle(100,150,140,170, fill ="yellow", outline = "yellow")

    c.create_line(80,70,100,70)
    c.create_line(80,90,100,90)
    c.create_line(80,110,100,110)
    c.create_line(60,130,100,130)
    c.create_line(60,150,140,150)
    c.create_line(60,170,140,170)
    #oči
    c.create_oval(75,75,85,85, fill = "white")
    c.create_oval(75,79,81,85, fill = "black")

    Lukas

    import tkinter

    canvas = tkinter.Canvas()
    canvas.pack()

    def logo():
    canvas.create_rectangle(20,230,50,260,fill='limegreen')
    canvas.create_rectangle(30,220,60,250,fill='limegreen')
    canvas.create_rectangle(40,210,70,240,fill='limegreen')
    canvas.create_rectangle(50,200,80,230,fill='limegreen')
    canvas.create_rectangle(60,190,90,220,fill='limegreen')
    canvas.create_rectangle(10,250,30,260,fill='limegreen')
    canvas.create_rectangle(3,250,10,255,fill='limegreen')
    canvas.create_rectangle(70,180,100,210,fill='limegreen')
    canvas.create_rectangle(80,170,110,200,fill='limegreen')
    canvas.create_rectangle(90,160,120,190,fill='limegreen')
    canvas.create_rectangle(100,150,130,180,fill='limegreen')
    canvas.create_rectangle(110,140,140,170,fill='limegreen')
    canvas.create_rectangle(120,130,150,160,fill='limegreen')
    canvas.create_rectangle(130,120,160,150,fill='limegreen')
    canvas.create_oval(130,130,200,180,fill='white')
    canvas.create_rectangle(140,120,170,150,fill='limegreen')
    canvas.create_rectangle(150,120,180,150,fill='limegreen')
    canvas.create_rectangle(170,130,200,160,fill='limegreen')
    canvas.create_rectangle(170,140,185,170,fill='limegreen')
    canvas.create_rectangle(185,140,200,170,fill='lawngreen')
    canvas.create_rectangle(170,165,200,185,fill='lawngreen')
    canvas.create_rectangle(150,170,180,190,fill='lawngreen')
    canvas.create_rectangle(120,170,150,200,fill='lawngreen')







    logo()

    *Not the full version of the code.

    Youssif

    import turtle

    def draw_circle(turtle, color, size, x, y):
    turtle.penup()
    turtle.color(color)
    turtle.fillcolor(color)
    turtle.goto(x,y)
    turtle.setheading(90)
    turtle.begin_fill()
    turtle.pendown()
    turtle.circle(size,180)
    turtle.penup()
    turtle.end_fill()
    turtle.pendown()

    tommy = turtle.Turtle()
    tommy.shape("turtle")
    tommy.speed(500)

    listecouleur = ['red', 'blue', 'green', ]

    for i in range(3):
    draw_circle(tommy, listecouleur[i], 140-20*i, 145-20*i,0)

    tommy.penup()
    tommy.goto(0,-50)
    tommy.color('red')
    tommy.write("Hour of Python", align="center", font=(None, 32, "bold"))
    tommy.goto(0,-80)

    tommy.penup()
    tommy.goto(0,-100)
    tommy.color('blue')
    tommy.write("Heure de Python", align="center", font=(None, 32, "bold"))
    tommy.goto(0,-80)

    tommy.penup()
    tommy.goto(0,-150)
    tommy.color('green')
    tommy.write("Hodina Pythonu", align="center", font=(None, 32, "bold"))
    tommy.goto(0,-250)

    Damien
    Mikel

    import turtle
    from turtle import *
    speed(-2000)
    penup()
    goto(-200,-53)
    c=2
    u=200
    pendown()
    for k in range(4):
    color("blue")
    forward(c*u)
    left(150)
    for k in range(2):
    color("red")
    forward(c*u)
    left(150)
    for k in range(2):
    color("blue")
    forward(c*u)
    left(150)
    for k in range(4):
    color("red")
    forward(c*u)
    left(150)
    penup()
    goto(-15,0)
    pendown()
    color("black")
    left(90)
    forward(40)
    right(90)
    forward(30)
    right(90)
    forward(10)
    right(90)
    forward(20)
    left(90)
    forward(25)
    left(90)
    forward(20)
    right(90)
    forward(10)
    right(90)
    forward(20)
    penup()
    goto(-15,0)
    left(90)
    pendown()
    forward(40)
    left(90)
    forward(30)
    left(90)
    forward(10)
    left(90)
    forward(20)
    right(90)
    forward(25)
    penup()
    goto(-1515651,5646)

    Marko Vríčan

    PLEASE PROVIDE A VALUE (MAX 150 WORDS) ....

    Maceo

    import turtle


    bat = turtle.Turtle()

    bat.pensize(3)

    wn = turtle.Screen()
    wn.bgcolor("dark blue")


    bat.begin_fill()

    bat.left(90)
    bat.circle(50, 85)
    bat.circle(15, 110)
    bat.right(180)


    bat.circle(30, 150)
    bat.right(5)
    bat.forward(10)


    bat.right(90)
    bat.circle(-70, 140)
    bat.forward(40)
    bat.right(110)


    bat.circle(100, 30)
    bat.circle(30, 100)
    bat.left(50)
    bat.forward(50)
    bat.right(145)


    bat.forward(30)
    bat.left(55)
    bat.forward(10)



    bat.forward(10)
    bat.left(55)
    bat.forward(30)



    bat.right(145)
    bat.forward(50)
    bat.left(50)
    bat.circle(30, 100)
    bat.circle(100, 30)


    bat.right(90)
    bat.right(20)
    bat.forward(40)
    bat.circle(-70, 140)


    bat.right(90)
    bat.forward(10)
    bat.right(5)
    bat.circle(30, 150)


    bat.left(180)
    bat.circle(15, 110)
    bat.circle(50, 85)


    bat.end_fill()

    Ado Soska
    Ado Soska
    Tereza Pekarová
    Tereza Pekarová
    Logo
    Stanislava Vandžurová

    import tkinter

    canvas = tkinter.Canvas()
    canvas.pack()
    x=240
    y=200
    canvas.create_rectangle(x-220,y-180,x-160,y-60,fill='blue')
    canvas.create_rectangle(x-215,y-175,x-165,y-125,fill='white')
    canvas.create_rectangle(x-215,y-120,x-160,y,fill='yellow')
    canvas.create_rectangle(x-210,y-120,x-165,y-60,fill='white')
    canvas.create_rectangle(x-215,y-55,x-165,y-5,outline='',fill='white')
    canvas.create_rectangle(x-140,y-120,x-100,y-60,fill='blue')
    canvas.create_rectangle(x-100,y-180,x-40,y-60,fill='blue')
    canvas.create_rectangle(x-100,y-90,x-40,y,fill='yellow')
    canvas.create_rectangle(x-40,y-120,x,y-60,fill='yellow')

    Bronislava Sevcikova

    import tkinter

    canvas=tkinter.Canvas()
    canvas.pack()

    canvas.create_line(20,20,120,20)
    canvas.create_line(20,20,20,160)
    canvas.create_line(120,20,120,160)
    canvas.create_line(70,20,70,160)
    canvas.create_oval(40,60,100,120)
    canvas.create_line(20,90,120,90)
    canvas.create_line(20,20,120,160)
    canvas.create_line(20,20,70,60)
    canvas.create_line(120,20,70,60)

    Jozef Šmárik

    import tkinter


    canvas=tkinter.Canvas()
    canvas.pack()


    x=187
    y=133

    canvas.create_rectangle(x-50,y-40,x+50,y+40, fill='green')
    canvas.create_rectangle(x-40,y+40,x+40,y+80, fill='green')
    canvas.create_rectangle(x-30,y+80,x+30,y+120, fill='green')
    canvas.create_rectangle(x-45,y-60,x-20,y-20, fill='black')
    canvas.create_rectangle(x-10,y-50,x+10,y-30, fill='red')
    canvas.create_rectangle(x+45,y-60,x+20,y-20, fill='black')

    Jozef Sedliak

    import tkinter
    canvas=tkinter.Canvas()
    canvas.pack()

    def logo():
    x=150
    y=150
    canvas.create_rectangle(x-100,y-50,x,y,fill="navyblue")
    canvas.create_rectangle(x,y-50,x+30,y+50,fill="navyblue")
    canvas.create_rectangle(x,y+20,x+150,y+80,fil="navyblue")
    canvas.create_oval(x-80,y-40,x-60,y-20,fill="green")
    canvas.create_rectangle(x-130,y-20,x-100,y-5,fill="red")
    canvas.create_rectangle(x+30,y-50,x+60,y+70,fill="orange")
    canvas.create_rectangle(x-10,y-80,x+60,y-50,fill="orange")
    canvas.create_rectangle(x,y+70,x+90,y+100,fill="orange")
    canvas.create_oval(x-20,y-100,x+20,y-60,fill="lightgrey")
    canvas.create_rectangle(x-10,y-90,x,y-70,fill="black")
    canvas.create_oval(x-10,y-95,x+10,y-80,fill="black")
    canvas.create_oval(x,y-90,x+5,y-85,fill="lightgrey")
    logo()

    Vanesa Uríčová

    import tkinter
    canvas=tkinter.Canvas()
    canvas.pack()
    def logo():
    x=20
    y=20
    canvas.create_rectangle(x+10,y+10,x+350,y+90,fill='black')
    canvas.create_rectangle(x+20,y+20,x+60,y+60,fill='limegreen')
    canvas.create_rectangle(x+20,y+60,x+40,y+80,fill='limegreen')
    canvas.create_rectangle(x+30,y+30,x+50,y+50,fill='black')
    canvas.create_rectangle(x+60,y+20,x+75,y+60,fill='limegreen')
    canvas.create_rectangle(x+85,y+20,x+100,y+60,fill='limegreen')
    canvas.create_rectangle(x+70,y+60,x+90,y+80,fill='limegreen')
    canvas.create_rectangle(x+75,y+50,x+85,y+60,fill='limegreen')
    canvas.create_rectangle(x+100,y+20,x+160,y+40,fill='limegreen')
    canvas.create_rectangle(x+120,y+40,x+140,y+80,fill='limegreen')
    canvas.create_rectangle(x+160,y+20,x+180,y+80,fill='limegreen')
    canvas.create_rectangle(x+180,y+40,x+200,y+60,fill='limegreen')
    canvas.create_rectangle(x+200,y+20,x+220,y+80,fill='limegreen')
    canvas.create_rectangle(x+220,y+20,x+280,y+80,fill='limegreen')
    canvas.create_rectangle(x+240,y+40,x+260,y+60,fill='black')
    canvas.create_rectangle(x+280,y+20,x+300,y+80,fill='limegreen')
    canvas.create_rectangle(x+320,y+20,x+340,y+80,fill='limegreen')
    canvas.create_rectangle(x+300,y+40,x+310,y+50,fill='limegreen')
    canvas.create_rectangle(x+310,y+50,x+320,y+60,fill='limegreen')
    canvas.create_rectangle(x+120,y+120,x+200,y+180,fill='darkorange')
    canvas.create_oval(x+140,y+130,x+180,y+170,fill='white')
    canvas.create_oval(x+150,y+140,x+170,y+160,fill='black')
    canvas.create_rectangle(x+60,y+140,x+120,y+150,fill='orange')
    canvas.create_rectangle(x+60,y+90,x+70,y+140,fill='orange')
    canvas.create_rectangle(x+200,y+140,x+260,y+150,fill='orange')
    canvas.create_rectangle(x+250,y+90,x+260,y+140,fill='orange')
    canvas.create_rectangle(x+140,y+180,x+150,y+200,fill='orange')
    canvas.create_rectangle(x+170,y+180,x+180,y+200,fill='orange')
    canvas.create_rectangle(x+120,y+190,x+150,y+200,fill='darkorange')
    canvas.create_rectangle(x+170,y+190,x+200,y+200,fill='darkorange')
    logo()

    Tatiana Lutišanová

    import tkinter
    canvas = tkinter.Canvas()
    canvas.pack()
    def kresli():
    canvas.create_rectangle(105, 60, 112, 75, fill='black')
    canvas.create_rectangle(127, 45, 142, 75, fill='black')
    canvas.create_rectangle(142, 60, 157, 75, fill='black')
    canvas.create_rectangle(157, 45, 172, 75, fill='black')
    canvas.create_rectangle(142, 75, 157, 120, fill='black')
    canvas.create_rectangle(187, 45, 232, 60, fill='black')
    canvas.create_rectangle(202, 60, 217, 120, fill='black')
    canvas.create_rectangle(75, 135, 90, 210, fill='black')
    canvas.create_rectangle(90, 165, 105, 180, fill='black')
    canvas.create_rectangle(105, 135, 120, 210, fill='black')
    canvas.create_rectangle(142, 135, 157, 157, fill='black')
    canvas.create_rectangle(127, 150, 142, 195, fill='black')
    canvas.create_rectangle(157, 150, 172, 195, fill='black')
    canvas.create_rectangle(142, 187, 157, 210, fill='black')
    canvas.create_rectangle(187, 135, 202, 210, fill='black')
    canvas.create_rectangle(202, 150, 210, 165, fill='black')
    canvas.create_rectangle(210, 165, 217, 180, fill='black')
    canvas.create_rectangle(217, 135, 232, 210, fill='black')

    kresli()

    Polkorábová Eliška
    Polkorábová Eliška
    Radka

    Code in separate file

    Radka

    Code for my logo

    Terezka

    import tkinter
    canvas=tkinter.Canvas()
    canvas.pack()
    x=10
    y=10
    canvas.create_rectangle(x+20,y,x+260,y+60,fill='gray')
    canvas.create_rectangle(x+20,y+60,x+260,y+80,fill='black')
    canvas.create_rectangle(x+30,y+10,x+30,y+50,fill='black')
    canvas.create_rectangle(x+70,y+10,x+70,y+30)
    canvas.create_rectangle(x+30,y+10,x+50,y+10)
    canvas.create_rectangle(x+50,y+10,x+50,y+30)
    canvas.create_rectangle(x+30,y+30,x+50,y+30)
    canvas.create_rectangle(x+70,y+30,x+90,y+30)
    canvas.create_rectangle(x+90,y+10,x+90,y+30)
    canvas.create_rectangle(x+80,y+30,x+80,y+50)
    canvas.create_rectangle(x+60,y,x+60,y+60)
    canvas.create_rectangle(x+110,y+10,x+130,y+10)
    canvas.create_rectangle(x+120,y+10,x+120,y+50)
    canvas.create_rectangle(x+100,y,x+100,y+60)
    canvas.create_rectangle(x+140,y,x+140,y+60)
    canvas.create_rectangle(x+150,y+10,x+150,y+50)
    canvas.create_rectangle(x+150,y+30,x+170,y+30)
    canvas.create_rectangle(x+170,y+10,x+170,y+50)
    canvas.create_rectangle(x+180,y,x+180,y+60)
    canvas.create_rectangle(x+190,y+10,x+210,y+10)
    canvas.create_rectangle(x+190,y+10,x+190,y+50)
    canvas.create_rectangle(x+190,y+50,x+210,y+50)
    canvas.create_rectangle(x+210,y+10,x+210,y+50)
    canvas.create_rectangle(x+220,y,x+220,y+60)
    canvas.create_rectangle(x+230,y+10,x+230,y+50)
    canvas.create_rectangle(x+230,y+10,x+235,y+20,fill='black')
    canvas.create_rectangle(x+235,y+20,x+240,y+30,fill='black')
    canvas.create_rectangle(x+240,y+30,x+245,y+40,fill='black')
    canvas.create_rectangle(x+245,y+40,x+250,y+50,fill='black')
    canvas.create_rectangle(x+250,y+10,x+250,y+50)

    Manny

    import turtle

    tommy = turtle.Turtle()
    tommy.shape("turtle")
    tommy.speed(500)

    tommy.forward(50)
    tommy.left(90)
    tommy.forward(50)
    tommy.right(90)
    tommy.forward(75)
    tommy.left(90)
    tommy.forward(75)
    tommy.left(90)
    tommy.forward(50)
    tommy.left(90)
    tommy.forward(25)
    tommy.left(90)
    tommy.forward(25)
    tommy.right(90)
    tommy.forward(15)
    tommy.right(90)
    tommy.forward(100)
    tommy.left(90)
    tommy.forward(85)
    tommy.penup()
    tommy.left(90)
    tommy.forward(180)
    tommy.pendown()
    tommy.left(90)
    tommy.forward(90)
    tommy.left(90)
    tommy.forward(50)
    tommy.left(90)
    tommy.forward(50)
    tommy.right(90)
    tommy.forward(75)
    tommy.left(90)
    tommy.forward(75)
    tommy.left(90)
    tommy.forward(50)
    tommy.left(90)
    tommy.forward(25)
    tommy.left(90)
    tommy.forward(25)
    tommy.right(90)
    tommy.forward(10)
    tommy.right(90)
    tommy.forward(100)
    tommy.penup()
    tommy.goto(0,-50)
    tommy.color('blue')
    tommy.write("Python", align="center", font=(None, 32, "bold"))

    tommy.goto(0,-80)

    Georges

    import turtle
    tina = turtle. Turtle()
    bob = turtle. Turtle()

    tina.shape("turtle")
    bob.shape("turtle")
    tina.penup()
    bob.penup()

    tina.color("red")

    tina.speed(0)
    bob.speed(0)


    tina.goto(-40,110)
    bob.goto(-60,130)

    tina.pendown()
    bob.pendown()

    tina.forward(20)
    bob.forward(210)

    tina.right(90)
    bob.left(90)

    tina.forward(230)
    bob.forward(20)

    tina.left(90)
    bob.left(90)

    tina.forward(120)
    bob.forward(280)

    tina.right(90)
    bob.left(90)

    tina.forward(20)
    bob.forward(20)

    tina.right(90)
    bob.left(90)

    tina.forward(140)
    bob.forward(50)

    tina.right(90)
    bob.right(90)

    tina.forward(250)
    bob.forward(270)

    bob.left(90)
    bob.forward(20)

    bob.left(90)
    bob.forward(270)

    tina.penup()
    tina.goto(170,180)
    bob.penup()
    bob.goto(170,170)

    tina.pendown()
    bob.pendown()

    tina.left(90)
    bob.left(90)

    tina.forward(320)
    bob.forward(310)

    tina.left(90)
    bob.left(90)

    tina.forward(10)
    bob.forward(10)

    tina.right(90)
    bob.right(90)

    tina.forward(10)
    bob.forward(10)

    tina.left(90)
    bob.left(90)

    tina.forward(10)
    bob.forward(10)

    tina.right(90)
    bob.right(90)

    tina.forward(10)
    bob.forward(10)

    tina.left(90)
    bob.left(90)

    tina.forward(300)
    bob.forward(280)

    tina.left(90)
    bob.left(90)

    tina.forward(10)
    bob.forward(10)

    tina.right(90)
    bob.right(90)

    tina.forward(10)
    bob.forward(10)

    tina.left(90)
    bob.left(90)

    tina.forward(10)
    bob.forward(10)

    tina.right(90)
    bob.right(90)

    tina.forward(10)
    bob.forward(10)

    tina.left(90)
    bob.left(90)

    tina.forward(340)
    bob.forward(320)

    tina.left(90)
    bob.left(90)

    tina.forward(10)
    bob.forward(10)

    tina.right(90)
    bob.right(90)

    tina.forward(10)
    bob.forward(10)

    tina.left(90)
    bob.left(90)

    tina.forward(10)
    bob.forward(10)

    tina.right(90)
    bob.right(90)

    tina.forward(10)
    bob.forward(10)

    tina.left(90)
    bob.left(90)

    tina.forward(300)
    bob.forward(280)

    tina.left(90)
    bob.left(90)

    tina.forward(10)
    bob.forward(10)

    tina.right(90)
    bob.right(90)

    tina.forward(10)
    bob.forward(10)

    tina.left(90)
    bob.left(90)

    tina.forward(10)
    bob.forward(10)

    tina.right(90)
    bob.right(90)

    tina.forward(10)
    bob.forward(10)

    tina.left(90)
    bob.left(90)

    tina.forward(20)
    bob.forward(12)

    tina.penup()
    bob.penup()

    tina.goto(0)
    bob.goto(0)

    Owen

    import turtle

    def draw_circle(turtle, color, size, x, y):
    turtle.penup()
    turtle.color(color)
    turtle.fillcolor(color)
    turtle.goto(x,y)
    turtle.setheading(90)
    turtle.begin_fill()
    turtle.pendown()
    turtle.circle(size,360)
    turtle.penup()
    turtle.end_fill()
    turtle.pendown()

    owen = turtle.Turtle()
    owen.shape("turtle")
    owen.speed(2)

    listecouleur = ['blue', 'white', 'red', 'blue', 'white', 'red', 'blue', 'white', 'red', 'blue', 'white', 'red', 'blue', 'white', 'red']

    for salut in range(15):
    draw_circle(owen, listecouleur[salut], 140-10*salut, 145-10*salut,0)

    owen.penup()
    owen.goto(0,-180)
    owen.color('blue')
    owen.write("The colors of our Countries", align="center", font=(None, 20, "bold"))
    owen.goto(0,180)

    Diego

    import turtle
    import random
    tina = turtle.Turtle()
    tina.shape("turtle")
    tina.speed(250)

    window = turtle.Screen()
    window.bgcolor("white")

    def corner(turtle):
    for x in range(0, 6):
    turtle.left(15)
    turtle.forward(2)

    def cornered_box(turtle, x1, y1, x2, y2, letter):
    turtle.penup()
    turtle.goto(x1, y1)
    turtle.pendown()
    turtle.color("black")
    turtle.fillcolor("black")
    turtle.begin_fill()
    for x in range(0, 4):
    turtle.forward(40)
    corner(turtle)
    turtle.end_fill()
    turtle.penup()
    turtle.goto(x2, y2)
    turtle.color("white")
    turtle.write(letter, None, None, "28pt bold")

    cornered_box(tina, -40, 20, -35, 35, "Le")
    cornered_box(tina, 25, 20, 30, 35, "A")
    cornered_box(tina, -40, -45, -35, -30, "R")
    cornered_box(tina, 25, -45, 30, -30, "N")

    tina.color("black")
    tina.goto(-115, -92)
    tina.write("Anyone Can Learn", None, None, "24pt bold")
    tina.goto(-115, -127)
    tina.write("Anyone Can Teach", None, None, "24pt bold")
    tina.left(90)


    tina.goto(-20, 105)

    for x in range(0, 100):
    tina.color("#%06x" % random.randint(0, 2**24 - 1))
    tina.color("Blue")
    tina.write("Hour Of Python !")
    tina.color("White")
    tina.goto(200, 200)

    Olivier
    Alexis

    import turtle

    def draw_circle(turtle, size, x, y):
    turtle.penup()
    turtle.goto(x,y)
    turtle.begin_fill()
    turtle.pendown()
    turtle.circle(size)
    turtle.penup()
    turtle.end_fill()
    turtle.penup()

    tommy = turtle.Turtle()
    tina = turtle.Turtle()
    tina.shape("turtle")
    tommy.shape("turtle")
    tina.color("black")
    tommy.color("white")
    tommy.speed(500)
    tina.speed(500)


    draw_circle(tina, 101, 0, -3)
    draw_circle(tommy, 100, 0, -2)
    tommy.penup()
    tommy.color("black")
    tommy.goto(0, 98)
    tommy.pendown()
    tommy.left(90)
    tommy.forward(50)
    tina.penup()
    tina.color("black")
    tommy.goto(0, 98)
    tommy.right(180)
    tommy.pendown()
    tommy.left(90)
    tommy.forward(30)

    tommy.penup()
    tommy.goto(0,-50)
    tommy.color('black')
    tommy.write("Apprenons le python ,", align="center", font=(None, 16, "bold"))
    tommy.goto(0,-80)
    tommy.right(90)

    tina.penup()
    tina.goto(0,-150)
    tina.color("grey")
    tina.write("tous ensemble !!", align="center", font=(None, 16, "bold"))
    tina.goto(0,-120)
    tina.left(90)