#Pokud zadám tohle:
def SMAJLIK(x,y):
from livewires import*
begin_graphics()
set_colour(Colour.yellow)
circle(x,y,51)
set_colour(Colour.black)
circle(x,y,50)
circle(x-20,y+15,7)
circle(x+20,y+15,7)
set_colour(Colour.blue)
circle(x-20,y+14,2)
circle(x+20,y+14,2)
set_colour(Colour.green)
move(x+10,y-2)
draw(x-10,y-2)
draw(x-10,y-15)
draw(x+10,y-15)
draw(x+10,y-2)
set_colour(Colour.red)
circle(x,y-10,endpoints=((x-20,y-20),(x+20,y-20)))
set_colour(Colour.pink)
circle(x+1,y+45,endpoints=((x-20,y+40),(x+22,y+40)),filled=1)
circle(x+1,y+30,endpoints=((x+30,y+40),(x-32,y+40)),filled=1)
dpp=255.0
orange=Colour(255/dpp,128/dpp,0/dpp)
set_colour(orange)
circle(x-57,y,endpoints=((x-50,y+3),(x-50,y-3)))
circle(x+57,y,endpoints=((x+50,y-3),(x+50,y+3)))
set_colour(Colour.black)
circle(x+1,y+45,endpoints=((x-20,y+35),(x+22,y+35)))
circle(x+1,y+30,endpoints=((x+30,y+40),(x-32,y+40)))
move(x-30,y+40)
draw(x-20,y+35)
draw(x,y+32)
draw(x+22,y+35)
draw(x+30,y+40)
sleep(3)
SMAJLIK(300,250)
SMAJLIK(100,100)
SMAJLIK(500,400)
SMAJLIK(100,400)
SMAJLIK(500,100)
#Objeví se mi jeden smajlík, po 3 vteřínách druhý, po dalších 3 vteřinách třetí, atd.
#Nevěděl by prosím někdo jak to má být, aby se objevilo všech 5 najednou?????????????