Best JavaScript code snippet using storybook-root
wallwatch.py
Source: wallwatch.py
...12box=turtle.Turtle()13box.speed(50)14box.hideturtle()15box.penup()16box.goto(0,-250)17box.pendown()18box.fillcolor("#030303")19box.begin_fill()20box.forward(250)21box.left(90)22box.forward(500)23box.left(90)24box.forward(500)25box.left(90)26box.forward(500)27box.left(90)28box.forward(250)29box.end_fill()3031#filling the circle with color32turtle.penup()33turtle.goto(0,-200)34turtle.pendown()35turtle.hideturtle()36turtle.fillcolor("#141414")37turtle.begin_fill()38turtle.circle(200)39turtle.end_fill()4041#the border circle42border=turtle.Turtle()43border.speed(50)44border.pensize(15)45border.penup()46border.goto(0,-200)47border.pendown()48border.color("brown")49border.circle(200)50#the hour lines on the clock51arrow1=turtle.Turtle()52arrow1.speed(50)53arrow1.hideturtle()54arrow1.color("blue")55arrow1.width(5)56arrow1.right(270)57i=1258while i>=1:59 arrow1.penup()60 arrow1.forward(150)61 arrow1.pendown()62 arrow1.forward(50)63 arrow1.penup()64 arrow1.goto(0,0)65 arrow1.left(30)66 arrow1.pendown()67 arrow1.color("blue")68 i-=169#the minute pointer70i=071arrow2=turtle.Turtle()72arrow2.hideturtle()73arrow2.speed(200)74arrow2.color("blue")75arrow2.width(3)76while i<60:77 arrow2.penup()78 arrow2.forward(170)79 arrow2.pendown()80 arrow2.forward(30)81 arrow2.penup()82 arrow2.goto(0,0)83 arrow2.left(6)8485 i+=18687def revolution_of_hour():88 chour= datetime.datetime.now().hour89 revolvment = chour*-30+45090 cminute= datetime.datetime.now().minute91 revolvment = revolvment + (-1* cminute)/292 hour.setheading(revolvment)93 animation.ontimer(revolution_of_hour, 60000)9495#moving the minute using function96def revolution_of_minute():97 cminute= datetime.datetime.now().minute98 revolvment = cminute*-6+9099 csecond= datetime.datetime.now().second100 revolvment = revolvment + (csecond)*(-1/10)101 minute.setheading(revolvment)102 animation.ontimer(revolution_of_minute, 1000)103104#moving the second using function105def revolution_of_second():106 csecond= datetime.datetime.now().second107 revolvment = csecond*-6+90108 second.setheading(revolvment)109 animation.ontimer(revolution_of_second, 1000)110111#the numbers on the clock112num=turtle.Turtle()113num.speed(50)114num.hideturtle()115num.penup()116num.goto(-15,120)117num.pendown()118num.color("orange")119num.write("12", font=("Times New Roman",30, "bold"))120121num.penup()122num.goto(60,100)123num.pendown()124num.color("orange")125num.write("1", font=("Times New Roman", 30, "bold"))126127num.penup()128num.goto(115,50)129num.pendown()130num.color("orange")131num.write("2", font=("Times New Roman", 30, "bold"))132133num.penup()134num.goto(130,-20)135num.pendown()136num.color("orange")137num.write("3", font=("Times New Roman", 30, "bold"))138139num.penup()140num.goto(110,-90)141num.pendown()142num.color("orange")143num.write("4", font=("Times New Roman", 30, "bold"))144145num.penup()146num.goto(60,-135)147num.pendown()148num.color("orange")149num.write("5", font=("Times New Roman", 30, "bold"))150151num.penup()152num.goto(-10,-155)153num.pendown()154num.color("orange")155num.write("6", font=("Times New Roman", 30, "bold"))156157num.penup()158num.goto(-70,-140)159num.pendown()160num.color("orange")161num.write("7", font=("Times New Roman", 30, "bold"))162163num.penup()164num.goto(-125,-95)165num.pendown()166num.color("orange")167num.write("8", font=("Times New Roman", 30, "bold"))168169170num.penup()171num.goto(-150,-20)172num.pendown()173num.color("orange")174num.write("9", font=("Times New Roman", 30, "bold"))175176num.penup()177num.goto(-145,35)178num.pendown()179num.color("orange")180num.write("10", font=("Times New Roman", 30, "bold"))181182num.penup()183num.goto(-95,100)184num.pendown()185num.color("orange")186num.write("11", font=("Times New Roman", 30, "bold"))187188#geez numbers189num=turtle.Turtle()190num.speed(100)191num.hideturtle()192num.penup()193num.goto(-15,215)194num.pendown()195num.color("orange")196num.write("á²áª", font=("Times New Roman", 20, "bold"))197198num.penup()199num.goto(110,175)200num.pendown()201num.color("orange")202num.write("á©", font=("Times New Roman", 20, "bold"))203204num.penup()205num.goto(180,105)206num.pendown()207num.color("orange")208num.write("áª", font=("Times New Roman", 20, "bold"))209210num.penup()211num.goto(210,-20)212num.pendown()213num.color("orange")214num.write("á«", font=("Times New Roman", 20, "bold"))215216num.penup()217num.goto(180,-130)218num.pendown()219num.color("orange")220num.write("á¬", font=("Times New Roman", 20, "bold"))221222num.penup()223num.goto(110,-210)224num.pendown()225num.color("orange")226num.write("á", font=("Times New Roman", 20, "bold"))227228num.penup()229num.goto(-10,-240)230num.pendown()231num.color("orange")232num.write("á®", font=("Times New Roman", 20, "bold"))233234num.penup()235num.goto(-120,-210)236num.pendown()237num.color("orange")238num.write("á¯", font=("Times New Roman", 20, "bold"))239240num.penup()241num.goto(-200,-130)242num.pendown()243num.color("orange")244num.write("á°", font=("Times New Roman", 20, "bold"))245246247num.penup()248num.goto(-225,-20)249num.pendown()250num.color("orange")251num.write("á±", font=("Times New Roman", 20, "bold"))252253num.penup()254num.goto(-200,100)255num.pendown()256num.color("orange")257num.write("á²", font=("Times New Roman", 20, "bold"))258259num.penup()260num.goto(-130,180)261num.pendown()262num.color("orange")263num.write("á²á©", font=("Times New Roman", 20, "bold"))264265266#the hour pointer267hour=turtle.Turtle()268hour.shape("arrow")269hour.speed(50)270hour.color("green")271hour.shapesize(stretch_wid=0.4, stretch_len=5)272273274#the minute pointer275minute =turtle.Turtle()276minute.shape("arrow")277minute.speed(50)278minute.color("yellow")279minute.shapesize(stretch_wid=0.2, stretch_len=13)280281282#the second pointer283second = turtle.Turtle()284second.shape("arrow")285second.speed(50)286second.color("red")287second.shapesize(stretch_wid=0.1,stretch_len=18)288289290#the mini circle291mini=turtle.Turtle()292mini.speed(50)293mini.hideturtle()294mini.penup()295mini.goto(0,-5)296mini.hideturtle()297mini.pendown()298mini.fillcolor("brown")299mini.begin_fill()300mini.circle(5)301mini.end_fill()302303animation.ontimer(revolution_of_hour,1)304animation.ontimer(revolution_of_minute,1)305animation.ontimer(revolution_of_second,1)306animation.exitonclick()
...
小人发射爱心.py
Source: 小人发射爱心.py
...6turtle.color('black', 'pink')# ç»ç¬é¢è²7turtle.pensize(3) # ç»ç¬ç²ç»8turtle.hideturtle() # éèç»ç¬ï¼å
ï¼9turtle.up() # æç¬10turtle.goto(-655, -255) # 移å¨ç»ç¬å°æå®èµ·å§åæ ï¼çªå£ä¸å¿ä¸º0,0ï¼11turtle.down() #ä¸ç¬12turtle.showturtle() #æ¾ç¤ºç»ç¬13#ç»å·¦è¾¹çå°äºº14turtle.goto(-600,-200)15turtle.goto(-600,-120)16turtle.circle(35)17turtle.goto(-600,-200)18turtle.forward(40)19turtle.right(90)20turtle.forward(60)21turtle.hideturtle()22turtle.up()23turtle.goto(-600, -160)24turtle.down()25turtle.showturtle()26turtle.left(90)27turtle.forward(55)28turtle.right(45)29turtle.forward(20)30turtle.hideturtle()31turtle.up()32turtle.goto(-600, -145)33turtle.down()34turtle.showturtle()35turtle.goto(-545, -145)36turtle.left(90)37turtle.forward(20)3839#ç»ç¬¬ä¸ä¸ªç±å¿40turtle.color('pink', 'pink')41turtle.begin_fill()42turtle.hideturtle()43turtle.up()44turtle.goto(-500, -153)45turtle.down()46turtle.showturtle()47turtle.right(90)48turtle.forward(30)49turtle.left(90)50turtle.forward(30)51turtle.left(45)52turtle.circle(10.6,180)53turtle.left(180)54turtle.circle(10.6,180)55turtle.end_fill()56#ä¸ä¸ä¸ªå¤§ç±å¿57turtle.color('pink', 'pink')58turtle.begin_fill()59turtle.hideturtle()60turtle.up()61turtle.goto(-430, -143)62turtle.down()63turtle.showturtle()64turtle.left(135)65turtle.right(90)66turtle.forward(50)67turtle.left(90)68turtle.forward(50)69turtle.left(45)70turtle.circle(17.67,180)71turtle.left(180)72turtle.circle(17.67,180)73turtle.end_fill()7475#第ä¸ä¸ªç±å¿76turtle.color('pink', 'pink')77turtle.begin_fill()78turtle.hideturtle()79turtle.up()80turtle.goto(-315, -133)81turtle.down()82turtle.showturtle()83turtle.left(135)84turtle.right(90)85turtle.forward(70)86turtle.left(90)87turtle.forward(70)88turtle.left(45)89turtle.circle(24.74,180)90turtle.left(180)91turtle.circle(24.74,180)92turtle.end_fill()9394#第å个ç±å¿95turtle.color('pink', 'pink')96turtle.begin_fill()97turtle.hideturtle()98turtle.up()99turtle.goto(-187, -133)100turtle.down()101turtle.showturtle()102turtle.left(135)103turtle.right(90)104turtle.forward(70)105turtle.left(90)106turtle.forward(70)107turtle.left(45)108turtle.circle(24.74,180)109turtle.left(180)110turtle.circle(24.74,180)111turtle.end_fill()112113#第5个ç±å¿114turtle.color('pink', 'pink')115turtle.begin_fill()116turtle.hideturtle()117turtle.up()118turtle.goto(-43.7, -143)119turtle.down()120turtle.showturtle()121turtle.left(135)122turtle.right(90)123turtle.forward(50)124turtle.left(90)125turtle.forward(50)126turtle.left(45)127turtle.circle(17.67,180)128turtle.left(180)129turtle.circle(17.67,180)130turtle.end_fill()131132#第6个ç±å¿133turtle.color('pink', 'pink')134turtle.begin_fill()135turtle.hideturtle()136turtle.up()137turtle.goto(53.88, -153)138turtle.down()139turtle.showturtle()140turtle.right(90)141turtle.right(225)142turtle.forward(30)143turtle.left(90)144turtle.forward(30)145turtle.left(45)146turtle.circle(10.6,180)147turtle.left(180)148turtle.circle(10.6,180)149turtle.end_fill()150151#ç»å³è¾¹çå°äºº152turtle.hideturtle()153turtle.up()154turtle.goto(251.28, -255)155turtle.down()156turtle.showturtle()157turtle.goto(196.28,-200)158turtle.goto(196.28,-120)159turtle.left(90)160turtle.circle(35)161turtle.goto(196.28,-200)162turtle.left(180)163turtle.forward(40)164turtle.left(90)165turtle.forward(60)166turtle.hideturtle()167turtle.up()168turtle.goto(196.28,-160)169turtle.down()170turtle.showturtle()171turtle.right(90)172turtle.forward(55)173turtle.left(45)174turtle.forward(20)175turtle.hideturtle()176turtle.up()177turtle.goto(196.28, -145)178turtle.down()179turtle.showturtle()180turtle.right(45)181turtle.forward(55)182turtle.right(45)183turtle.forward(20)184185#ç»æ°ç线åæ°ç186#第ä¸ä¸ªæ°ç187turtle.hideturtle()188turtle.up()189turtle.goto(-265, -133)190turtle.down()191turtle.showturtle()192turtle.goto(-245, 0)193turtle.right(135)194turtle.circle(35)195#第2个æ°ç196turtle.hideturtle()197turtle.up()198turtle.goto(-265, -133)199turtle.down()200turtle.showturtle()201turtle.goto(-305, 80)202turtle.circle(40)203#第3个æ°ç204turtle.hideturtle()205turtle.up()206turtle.goto(-137, -133)207turtle.down()208turtle.showturtle()209turtle.goto(-167, 0)210turtle.circle(35)211#第4ä¸ä¸ªæ°ç212turtle.hideturtle()213turtle.up()214turtle.goto(-137, -133)215turtle.down()216turtle.showturtle()217turtle.goto(-117, 80)218turtle.circle(40)219#ååLOVE220turtle.pencolor("GREEN")221turtle.penup()222turtle.goto(-245,10)223turtle.write("O",move=False,align='center',font=("微软é
é»",30,'normal'))224225226turtle.pencolor("PURPLE")227turtle.penup()228turtle.goto(-305,90)229turtle.write("L",move=False,align='center',font=("微软é
é»",30,'normal'))230231turtle.pencolor("YELLOW")232turtle.penup()233turtle.goto(-167,10)234turtle.write("V",move=False,align='center',font=("微软é
é»",30,'normal'))235236turtle.pencolor("ORANGE")237turtle.penup()238turtle.goto(-117, 90)239turtle.write("E",move=False,align='center',font=("微软é
é»",30,'normal'))240241242#åéç»è°243turtle.pencolor("PINK")244turtle.penup()245turtle.goto(300, 200)
...
shinchan.py
Source: shinchan.py
1import turtle as t2skin='#e8bb95'3def face():4 t.goto(270,-150)5 t.fillcolor(skin)6 t.begin_fill()7 t.right(170)8 t.pendown()9 t.forward(40)10 t.right(4)11 t.forward(60)12 t.right(2)13 t.forward(160)14 t.right(4)15 t.forward(160)16 t.right(10)17 t.forward(60)18 t.right(20)19 t.forward(60)20 t.right(20)21 t.forward(60)22 t.right(30)23 t.forward(60)24 t.right(30)25 t.forward(50)26 t.right(20)27 t.forward(50)28 t.right(30)29 t.forward(25)30 t.right(30)31 t.forward(35)32 t.right(30)33 t.forward(15)34 t.right(220)35 t.forward(15)36 t.right(10)37 t.forward(15)38 t.right(10)39 t.forward(15)40 t.right(5)41 t.forward(10)42 t.right(5)43 t.forward(20)44 t.right(6)45 t.forward(30)46 t.right(2)47 t.forward(40)48 t.right(7)49 t.forward(40)50 t.right(10)51 t.forward(30)52 t.right(10)53 t.forward(30)54 t.right(10)55 t.forward(10)56 t.right(10)57 t.forward(10)58 t.right(5)59 t.forward(50)60 t.right(5)61 t.forward(50)62 t.right(5)63 t.forward(20)64 t.right(5)65 t.forward(20)66 t.right(5)67 t.forward(20)68 t.right(2)69 t.forward(30)70 t.right(2)71 t.forward(30)72 t.right(2)73 t.forward(30)74 t.right(2)75 t.forward(30)76 t.right(2)77 t.forward(30)78 t.right(30)79 t.forward(30)80 t.right(5)81 t.forward(30)82 t.right(5)83 t.forward(30)84 t.right(5)85 t.forward(30)86 t.right(5)87 t.forward(130)88 t.goto(270,-150)89 t.end_fill()90 t.penup()91def ear():92 t.fillcolor(skin)93 t.begin_fill()94 t.right(200)95 t.forward(140)96 t.pendown()97 t.right(60)98 t.forward(40)99 t.right(5)100 t.forward(30)101 t.right(5)102 t.forward(50)103 t.right(5)104 t.forward(10)105 t.right(5)106 t.forward(10)107 t.right(5)108 t.forward(10)109 t.right(15)110 t.forward(10)111 t.right(15)112 t.forward(10)113 t.right(25)114 t.forward(10)115 t.right(25)116 t.forward(50)117 t.right(25)118 t.forward(70)119 t.right(25)120 t.forward(40)121 t.right(10)122 t.forward(40)123 t.right(10)124 t.forward(40)125 t.right(30)126 t.forward(40)127 t.right(60)128 t.forward(60)129 t.end_fill()130 131 t.penup()132def mouth():133 t.goto(-150,-200)134 t.right(120)135 t.pensize(10)136 t.pendown()137 t.fillcolor('#ad2626')138 t.begin_fill()139 for i in range(2):140 141 # two arcs142 t.circle(100,90)143 t.circle(100//2,90)144 145 t.end_fill()146 t.penup()147def eyes():148 t.goto(-100+50,110-50-40)149 t.pendown()150 t.fillcolor('black')151 t.begin_fill()152 t.circle(60)153 t.end_fill()154 t.penup()155 t.goto(-40,80-40)156 t.pendown()157 t.fillcolor('white')158 t.begin_fill()159 t.circle(30)160 t.end_fill()161 t.penup()162 x,y=150,-10163 t.goto(x,y)164 t.pendown()165 t.fillcolor('black')166 t.begin_fill()167 t.circle(60)168 t.end_fill()169 170 t.penup()171 172 t.goto(x+10,y+20)173 t.pendown()174 t.fillcolor('white')175 t.begin_fill()176 t.circle(30)177 t.end_fill()178 t.penup()179def chul():180 t.goto(270.00,-10.00)181 t.pendown()182 t.fillcolor('black')183 t.begin_fill()184 t.left(90)185 t.forward(230)186 t.goto(241.48,229.02)187 t.goto(260.76,206.04)188 t.goto(277.97,181.46)189 t.goto(292.97,155.48)190 t.goto(305.65,128.29)191 t.goto(350.11,25)192 t.end_fill()193 t.fillcolor('black')194 t.begin_fill()195 t.goto(249.95,170)196 t.left(60)197 t.forward(140)198 for _ in range(5):199 t.left(9)200 t.forward(40)201 t.forward(60)202 t.goto(-125.72,217.25)203 t.goto(-104.50,238.47)204 t.goto(-79.93,255.67)205 t.goto(-70.87,259.90)206 t.goto(-61.21,262.49)207 t.goto(-11.97,271.17)208 t.goto(-61.21,262.49)209 t.goto(-11.97,271.17)210 t.goto(37.84,275.53)211 t.goto(57.84,275.53)212 t.goto(77.77,273.79)213 t.goto(97.46,270.31)214 t.goto(126.81,264.08)215 t.goto(155.92,256.82)216 t.goto(184.75,248.55)217 t.goto(213.29,239.28)218 t.goto(241.48,229.02)219 220 t.end_fill()221def bhuru_r_line(a,b,c,d):222 223 t.pendown()224 t.right(140)225 for _ in range(a):226 t.forward(20)227 t.right(d)228 t.right(10)229 t.forward(20)230 t.right(10)231 t.forward(20)232 t.right(20)233 for _ in range(b):234 t.forward(20)235 t.right(c)236def bhuru():237 t.penup()238 t.goto(-110,130)239 t.pensize(5)240 t.forward(47)241 bhuru_r_line(4,7,10,5)242 t.penup()243 t.right(110)244 t.goto(100,120)245 bhuru_r_line(4,4,20,7)246 t.penup()247def motabhuru():248 t.pensize(50)249 t.goto(-110,220)250 t.pendown()251 t.left(90+60)252 t.forward(80)253 t.right(90)254 t.forward(80)255 t.penup()256 257 t.goto(100,190)258 t.left(90)259 t.pendown()260 t.forward(80)261 t.right(90)262 t.forward(80)263 t.penup()264 265if __name__=="__main__":266 t.Turtle()267 t.title('Shinchan')268 t.penup()269 t.pensize(12)270 t.setup(1000,800)271 face()...
小黄人.py
Source: 小黄人.py
...6t.hideturtle()7t.speed(0)8t.penup()9t.pensize(4)10t.goto(100,0)11t.pendown()12t.left(90)13t.color((0,0,0),(255,255,0))14#身ä½ç»å¶ä¸è²15t.begin_fill()16t.forward(200)17t.circle(100,180)18t.forward(200)19t.circle(100,180)20t.end_fill()21#å³ç¼çç»å¶ä¸è²22t.pensize(12)23t.penup()24t.goto(-100,200)25t.pendown()26t.right(100)27t.circle(500,23)28t.pensize(3)29t.penup()30t.goto(0,200)31t.pendown()32t.seth(270)33t.color("black","white")34t.begin_fill()35t.circle(30)36t.end_fill()37t.penup()38t.goto(15,200)39t.pendown()40t.color("black","black")41t.begin_fill()42t.circle(15)43t.end_fill()44t.penup()45t.goto(35,205)46t.color("black","white")47t.begin_fill()48t.circle(5)49t.end_fill()50#å·¦ç¼çç»å¶ä¸è²51t.pensize(3)52t.penup()53t.goto(0,200)54t.pendown()55t.seth(90)56t.color("black","white")57t.begin_fill()58t.circle(30)59t.end_fill()60t.penup()61t.goto(-15,200)62t.pendown()63t.color("black","black")64t.begin_fill()65t.circle(15)66t.end_fill()67t.penup()68t.goto(-35,205)69t.color("black","white")70t.begin_fill()71t.circle(5)72t.end_fill()73#å´ç»å¶ä¸è²74t.penup()75t.goto(-20,100)76t.pendown()77t.seth(270)78t.color("black","white")79t.begin_fill()80t.circle(20,180)81t.left(90)82t.forward(40)83t.end_fill()84#裤åç»å¶ä¸è²85t.penup()86t.goto(-100,0)87t.pendown()88t.seth(0)89t.color("black","blue")90t.begin_fill()91t.forward(20)92t.left(90)93t.forward(40)94t.right(90)95t.forward(160)96t.right(90)97t.forward(40)98t.left(90)99t.forward(20)100t.seth(270)101t.penup()102t.goto(-100,0)103t.circle(100,180)104t.end_fill()105#左裤åè
°å¸¦106t.penup()107t.goto(-70,20)108t.pendown()109t.color("black","blue")110t.begin_fill()111t.seth(45)112t.forward(15)113t.left(90)114t.forward(60)115t.seth(270)116t.forward(15)117t.left(40)118t.forward(50)119t.end_fill()120t.left(180)121t.goto(-70,30)122t.dot()123#å³è£¤è
°å¸¦124t.penup()125t.goto(70,20)126t.pendown()127t.color("black","blue")128t.begin_fill()129t.seth(135)130t.forward(15)131t.right(90)132t.forward(60)133t.seth(270)134t.forward(15)135t.right(40)136t.forward(50)137t.end_fill()138t.left(180)139t.goto(70,30)140t.dot()141#è142t.penup()143t.goto(4,-100)144t.pendown()145t.seth(270)146t.color("black","black")147t.begin_fill()148t.forward(30)149t.left(90)150t.forward(40)151t.seth(20)152t.circle(10,180)153t.circle(400,2)154t.seth(90)155t.forward(20)156t.goto(4,-100)157t.end_fill()158t.penup()159t.goto(-4,-100)160t.pendown()161t.seth(270)162t.color("black","black")163t.begin_fill()164t.forward(30)165t.right(90)166t.forward(40)167t.seth(20)168t.circle(10,-225)169t.circle(400,-3)170t.seth(90)171t.forward(21)172t.goto(-4,-100)173t.end_fill()174#å·¦æ175t.penup()176t.goto(-100,50)177t.pendown()178t.seth(225)179t.color("black","yellow")180t.begin_fill()181t.forward(40)182t.left(90)183t.forward(35)184t.seth(90)185t.forward(50)186t.end_fill()187#å³æ188t.penup()189t.goto(100,50)190t.pendown()191t.seth(315)192t.color("black","yellow")193t.begin_fill()194t.forward(40)195t.right(90)196t.forward(36)197t.seth(90)198t.forward(50)199t.end_fill()200#201t.penup()202t.goto(0,-100)203t.pendown()204t.forward(30)205#206t.penup()207t.goto(0,-20)208t.pendown()209t.color("yellow")210t.begin_fill()211t.seth(45)212t.forward(20)213t.circle(10,180)214t.right(90)215t.circle(10,180)216t.forward(20)217t.end_fill()218#219t.penup()220t.color("black")221t.goto(-100,-20)222t.pendown()223t.circle(30,90)224t.penup()225t.goto(100,-20)226t.pendown()227t.circle(30,-90)228#头顶229t.penup()230t.goto(2,300)231t.pendown()232t.begin_fill()233t.seth(135)234t.circle(100,40)235t.end_fill()236t.penup()237t.goto(2,300)238t.pendown()239t.begin_fill()240t.seth(45)241t.circle(100,40)
...
多拉爱梦.py
Source: 多拉爱梦.py
...15t.circle(100)16t.end_fill()17t.pu()18t.home()19t.goto(0, 134)20t.pd()21t.pensize(4)22t.fillcolor("#EA0014")23t.begin_fill()24t.circle(18)25t.end_fill()26t.pu()27t.goto(7, 155)28t.pensize(2)29t.color('white', 'white')30t.pd()31t.begin_fill()32t.circle(4)33t.end_fill()34t.pu()35t.goto(-30, 160)36t.pensize(4)37t.pd()38t.color('black', 'white')39t.begin_fill()40a = 0.441for i in range(120):42 if 0 <= i < 30 or 60 <= i < 90:43 a = a + 0.0844 t.lt(3) # å左转3度45 t.fd(a) # ååèµ°açæ¥é¿46 else:47 a = a - 0.0848 t.lt(3)49 t.fd(a)50t.end_fill()51t.pu()52t.goto(30, 160)53t.pensize(4)54t.pd()55t.color('black', 'white')56t.begin_fill()57for i in range(120):58 if 0 <= i < 30 or 60 <= i < 90:59 a = a + 0.0860 t.lt(3) # å左转3度61 t.fd(a) # ååèµ°açæ¥é¿62 else:63 a = a - 0.0864 t.lt(3)65 t.fd(a)66t.end_fill()67t.pu()68t.goto(-38, 190)69t.pensize(8)70t.pd()71t.right(-30)72t.forward(15)73t.right(70)74t.forward(15)75t.pu()76t.goto(15, 185)77t.pensize(4)78t.pd()79t.color('black', 'black')80t.begin_fill()81t.circle(13)82t.end_fill()83t.pu()84t.goto(13, 190)85t.pensize(2)86t.pd()87t.color('white', 'white')88t.begin_fill()89t.circle(5)90t.end_fill()91t.pu()92t.home()93t.goto(0, 134)94t.pensize(4)95t.pencolor('black')96t.pd()97t.right(90)98t.forward(40)99t.pu()100t.home()101t.goto(0, 124)102t.pensize(3)103t.pencolor('black')104t.pd()105t.left(10)106t.forward(80)107t.pu()108t.home()109t.goto(0, 114)110t.pensize(3)111t.pencolor('black')112t.pd()113t.left(6)114t.forward(80)115t.pu()116t.home()117t.goto(0, 104)118t.pensize(3)119t.pencolor('black')120t.pd()121t.left(0)122t.forward(80)123# 左边çè¡å124t.pu()125t.home()126t.goto(0, 124)127t.pensize(3)128t.pencolor('black')129t.pd()130t.left(170)131t.forward(80)132t.pu()133t.home()134t.goto(0, 114)135t.pensize(3)136t.pencolor('black')137t.pd()138t.left(174)139t.forward(80)140t.pu()141t.home()142t.goto(0, 104)143t.pensize(3)144t.pencolor('black')145t.pd()146t.left(180)147t.forward(80)148t.pu()149t.goto(-70, 70)150t.pd()151t.color('black', 'red')152t.pensize(6)153t.seth(-60)154t.begin_fill()155t.circle(80, 40)156t.circle(80, 80)157t.end_fill()158t.pu()159t.home()160t.goto(-80, 70)161t.pd()162t.forward(160)163t.pu()164t.home()165t.goto(-50, 50)166t.pd()167t.pensize(1)168t.fillcolor("#eb6e1a")169t.seth(40)170t.begin_fill()171t.circle(-40, 40)172t.circle(-40, 40)173t.seth(40)174t.circle(-40, 40)175t.circle(-40, 40)176t.seth(220)177t.circle(-80, 40)178t.circle(-80, 40)179t.end_fill()180# é¢å¸¦181t.pu()182t.goto(-70, 12)183t.pensize(14)184t.pencolor('red')185t.pd()186t.seth(-20)187t.circle(200, 30)188t.circle(200, 10)189# éé190t.pu()191t.goto(0, -46)192t.pd()193t.pensize(3)194t.color("black", '#f8d102')195t.begin_fill()196t.circle(25)197t.end_fill()198t.pu()199t.goto(-5, -40)200t.pd()201t.pensize(2)202t.color("black", '#79675d')203t.begin_fill()204t.circle(5)205t.end_fill()206t.pensize(3)207t.right(115)208t.forward(7)
...
picture.py
Source: picture.py
...29def head():30 #31 color('blue', 'blue')32 penup()33 goto(0, 100)34 drawRound(75, True)35 #36 color('white', 'white')37 penup()38 goto(0, 72)39 drawRound(60, True)40def eyes():41 #left eye42 color('black', 'white')43 penup()44 goto(-15, 80)45 drawRound(17, True)46 #right eye47 color('black', 'white')48 penup()49 goto(19, 80)50 drawRound(17, True)51 #52 color('black', 'black')53 penup()54 goto(-8, 70)55 drawRound(6, True)56 color('white', 'white')57 penup()58 goto(-8, 66)59 drawRound(2, True)60#61 color('black', 'black')62 penup()63 goto(12, 70)64 drawRound(6, True)65 color('white', 'white')66 penup()67 goto(12, 66)68 drawRound(2, True)69def nose():70 color('red', 'red')71 penup()72 goto(0, 40)73 drawRound(7, True)74def mouth():75 color('black', 'black')76 penup()77 goto(-30, -20)78 pendown()79 setheading(-27)80 circle(70, 55)81 #82 penup()83 goto(0, 26)84 pendown()85 goto(0, -25)86def whiskers():87 color('black', 'black')88 #middle left89 penup()90 goto(10, 5)91 pendown()92 goto(-40, 5)93 # middle right94 penup()95 goto(10, 5)96 pendown()97 goto(40, 5)98 # up left99 penup()100 goto(-10, 15)101 pendown()102 goto(-40, 20)103 # up right104 penup()105 goto(10, 15)106 pendown()107 goto(40, 20)108 #left109 penup()110 goto(-10, -5)111 pendown()112 goto(-40, -10)113 #right114 penup()115 goto(10, -5)116 pendown()117 goto(40, -10)118head()119eyes()120nose()121mouth()...
name.py
Source: name.py
1import turtle2turtle.reset()3turtle.penup()4turtle.goto(-250,200)5turtle.pendown()6turtle.forward(50)7turtle.penup()8turtle.goto(-300,150)9turtle.pendown()10turtle.forward(150)11turtle.right(180)12turtle.forward(75)13turtle.left(60)14turtle.forward(75)15turtle.forward(75)16turtle.left(180)17turtle.forward(75)18turtle.forward(75)19turtle.right(60)20turtle.right(60)21turtle.forward(150)22turtle.penup()23turtle.goto(-175,100)24turtle.goto(-175,0)25turtle.goto(-200,-100)26turtle.goto(-210,-80)27turtle.goto(-220,-40)28turtle.pendown()29turtle.left(60)30turtle.goto(-300,-40)31turtle.forward(75)32turtle.left(90)33turtle.forward(30)34turtle.right(90)35turtle.right(90)36turtle.forward(30)37turtle.left(90)38turtle.forward(75)39turtle.penup()40turtle.goto(0,175)41turtle.goto(-100,175)42turtle.right(90)43turtle.pendown()44turtle.forward(200)45turtle.forward(50)46turtle.penup()47turtle.goto(0,300)48turtle.goto(0,200)49turtle.goto(0,100)50turtle.circle(50)51turtle.pendown()52turtle.circle(50)53turtle.penup()54turtle.goto(0,100)55turtle.goto(0,0)56turtle.left(90)57turtle.pendown()58turtle.forward(100)59turtle.left(180)60turtle.forward(30)61turtle.left(90)62turtle.forward(30)63turtle.left(180)64turtle.forward(30)65turtle.left(90)66turtle.forward(30)67turtle.left(90)68turtle.forward(30)69turtle.penup()70turtle.goto (100,300)71turtle.goto(150,200)72turtle.right(90)73turtle.right(180)74turtle.pendown()75turtle.goto(200,200)76turtle.forward(100)77turtle.left(180)78turtle.forward(75)79turtle.goto(150,100)80turtle.penup()81turtle.goto(225,200)82turtle.pendown()83turtle.goto(300,100)84turtle.penup()85turtle.goto(350,200)86turtle.pendown()87turtle.goto(350,0)88turtle.penup()89turtle.goto (150,0)90turtle.pendown()91turtle.right(90)92turtle.forward(40)93turtle.goto(150,0)94turtle.right(90)95turtle.forward(175)...
main.py
Source: main.py
...30#大å°31s = 1032#r = 2 * (h...) /n33#R = 2 * (h...) /n34pen.goto(-800,0)35pen.goto(800,0)36pen.goto(0,0)37pen.goto(0,400)38pen.goto(0,-400)39pen.goto(0,0)40pen.goto(0,s * k)41pen.pencolor('red')42x = 143y = 144i = 045while x < 800 / s and x > -800 / s and y < 400 / s and y > -400 / s :46 x = 0.1 * i47 i = i + 148 y = (x ** H) * N + k49 pen.goto(s * x,s * y)50pen.penup()51pen.goto(0,s * k)52pen.pendown()53x = 154y = 155i = 056while x < 800 / s and x > -800 / s and y < 400 / s and y > -400 / s :57 x = 0.1 * (- i)58 i = i + 159 y = (x ** H) * N + k60 pen.goto(s * x,s * y)61pen.penup()62pen.goto(0,s * m)63pen.pendown()64pen.pencolor('blue')65x = 166y = 167a = 068while x < 800 / s and x > -800 / s and y < 400 / s and y > -400 / s :69 x = 0.1 * a70 a = a + 171 y = (x ** h) * n + m72 pen.goto(s * x,s * y)73pen.penup()74pen.goto(0,s * m)75pen.pendown()76x = 177y = 178a = 079while x < 800 / s and x > -800 / s and y < 400 / s and y > -400 / s :80 x = 0.1 * (- a)81 a = a + 182 y = (x ** h) * n + m83 pen.goto(s * x,s * y)...
Using AI Code Generation
1goto(storyName) {2 this.root.goto(storyName);3}4goto(storyName) {5 this.root.goto(storyName);6}7goto(storyName) {8 this.root.goto(storyName);9}10goto(storyName) {11 this.root.goto(storyName);12}13goto(storyName) {14 this.root.goto(storyName);15}16goto(storyName) {17 this.root.goto(storyName);18}19goto(storyName) {20 this.root.goto(storyName);21}22goto(storyName) {23 this.root.goto(storyName);24}25goto(storyName) {26 this.root.goto(storyName);27}28goto(storyName) {29 this.root.goto(storyName);30}31goto(storyName) {32 this.root.goto(storyName);33}34goto(storyName) {35 this.root.goto(storyName);36}37goto(storyName) {38 this.root.goto(storyName);39}40goto(storyName) {41 this.root.goto(storyName);42}43goto(storyName) {44 this.root.goto(storyName);45}46goto(storyName) {47 this.root.goto(storyName);48}49goto(storyName) {50 this.root.goto(storyName);51}52goto(storyName) {
Using AI Code Generation
1import { goto } from 'storybook-root';2import { goto } from 'storybook-root';3import { goto } from 'storybook-root';4import { goto } from 'storybook-root';5import { goto } from 'storybook-root';6import { goto } from 'storybook-root';7import { goto } from 'storybook-root';8import { goto } from 'storybook-root';9import { goto } from 'storybook-root';10import { goto } from 'storybook-root';11import { goto } from 'storybook-root';12import { goto } from 'storybook-root';13import { goto } from 'storybook-root';
Using AI Code Generation
1import { goto } from 'storybook-root';2goto('my-story');3goto('my-story', 'my-sub-story');4import { goto } from 'storybook-root';5goto('my-story');6goto('my-story', 'my-sub-story');7import { goto } from 'storybook-root';8goto('my-story');9goto('my-story', 'my-sub-story');10import { goto } from 'storybook-root';11goto('my-story');12goto('my-story', 'my-sub-story');13import { goto } from 'storybook-root';14goto('my-story');15goto('my-story', 'my-sub-story');16import { goto } from 'storybook-root';17goto('my-story');18goto('my-story', 'my-sub-story');19import { goto } from 'storybook-root';20goto('my-story');21goto('my-story', 'my-sub-story');22import { goto } from 'storybook-root';23goto('my-story');24goto('my-story', 'my-sub-story');25import { goto } from 'storybook-root';26goto('my-story');27goto('my-story', 'my-sub-story');28import { goto } from 'storybook-root';29goto('my-story');30goto('my-story', 'my-sub-story');31import { goto } from 'storybook-root';32goto('my-story');33goto('my-story', 'my-sub-story');34import { goto } from 'storybook-root';35goto('my-story');36goto('my-story', 'my-sub-story');37import { goto } from 'storybook-root';38goto('my-story');39goto('my-story', 'my-sub-story');40import { goto } from 'storybook-root';41goto('my-story');42goto('my-story', 'my-sub-story');43import { goto } from 'storybook-root';
Check out the latest blogs from LambdaTest on this topic:
Hey everyone! We hope you had a great Hacktober. At LambdaTest, we thrive to bring you the best with each update. Our engineering and tech teams work at lightning speed to deliver you a seamless testing experience.
In today’s world, an organization’s most valuable resource is its customers. However, acquiring new customers in an increasingly competitive marketplace can be challenging while maintaining a strong bond with existing clients. Implementing a customer relationship management (CRM) system will allow your organization to keep track of important customer information. This will enable you to market your services and products to these customers better.
When software developers took years to create and introduce new products to the market is long gone. Users (or consumers) today are more eager to use their favorite applications with the latest bells and whistles. However, users today don’t have the patience to work around bugs, errors, and design flaws. People have less self-control, and if your product or application doesn’t make life easier for users, they’ll leave for a better solution.
Estimates are critical if you want to be successful with projects. If you begin with a bad estimating approach, the project will almost certainly fail. To produce a much more promising estimate, direct each estimation-process issue toward a repeatable standard process. A smart approach reduces the degree of uncertainty. When dealing with presales phases, having the most precise estimation findings can assist you to deal with the project plan. This also helps the process to function more successfully, especially when faced with tight schedules and the danger of deviation.
When I started writing tests with Cypress, I was always going to use the user interface to interact and change the application’s state when running tests.
Learn to execute automation testing from scratch with LambdaTest Learning Hub. Right from setting up the prerequisites to run your first automation test, to following best practices and diving deeper into advanced test scenarios. LambdaTest Learning Hubs compile a list of step-by-step guides to help you be proficient with different test automation frameworks i.e. Selenium, Cypress, TestNG etc.
You could also refer to video tutorials over LambdaTest YouTube channel to get step by step demonstration from industry experts.
Get 100 minutes of automation test minutes FREE!!