أشهر أكواد مكتبة Turtle التي ستجعل الرسومات ممتعة وسهلة!
هل تريد الاستمتاع بتعلم البرمجة وإنشاء رسومات مذهلة في نفس الوقت؟ إذن دعني أقدم لك مجموعة من أشهر الأكواد في مكتبة Turtle التي ستجعل من عملية الرسم أمرًا ممتعًا وسهلًا للغاية!
1. رسم مربع بسيط :
ابدأ برسم مربع باستخدام السلحفاة، كل ما عليك هو استخدام حلقة for
لجعل السلحفاة تتحرك وترسم مربعًا.
import turtle
t = turtle.Turtle()
for _ in range(4):
t.forward(100)
t.right(90)
turtle.done()
2. رسم نجمة لامعة :
من خلال 5 حركات فقط، يمكنك رسم نجمة خماسية جميلة باستخدام السلحفاة.
import turtle
t = turtle.Turtle()
for _ in range(5):
t.forward(100)
t.right(144)
turtle.done()
3. دائرة كاملة بكل سهولة :
هل تريد رسم دائرة مثالية؟ استخدم هذا الكود وستحصل على دائرة بقطر تختاره بنفسك.
import turtle
t = turtle.Turtle()
t.circle(100)
turtle.done()
4. زهرة مبهجة برسمة بسيطة :
بإمكانك رسم زهرة مذهلة ببساطة عن طريق تكرار رسم الدوائر مع تدوير بسيط.
import turtle
t = turtle.Turtle()
for _ in range(36):
t.circle(50)
t.right(10)
turtle.done()
5. حلزون رائع يتحرك بلا توقف :
استخدم هذا الكود لتجعل السلحفاة ترسم حلزونًا ممتدًا يزداد حجمًا مع كل خطوة.
import turtle
t = turtle.Turtle()
for i in range(100):
t.forward(i * 2)
t.right(45)
turtle.done()
6. أضف لمستك بالألوان :
اجعل رسوماتك تنبض بالحياة عن طريق تغيير لون القلم المستخدم في الرسم.
import turtle
t = turtle.Turtle()
t.pencolor("red")
for _ in range(4):
t.forward(100)
t.right(90)
turtle.done()
7. إخفاء السلحفاة بعد الانتهاء من الرسم :
بعد أن تنتهي من الرسم، يمكنك إخفاء السلحفاة ليبقى تركيزك على رسوماتك فقط.
import turtle
t = turtle.Turtle()
t.hideturtle()
t.circle(100)
turtle.done()
8. حركة دون أثر :
إذا كنت تريد تحريك السلحفاة دون أن تترك أي أثر على الشاشة، استخدم penup()
وpendown()
لتحكم كامل.
import turtle
t = turtle.Turtle()
t.penup()
t.goto(100, 100)
t.pendown()
t.circle(50)
turtle.done()
مع هذه الأكواد البسيطة، يمكنك إنشاء رسومات رائعة وتجربة متعة البرمجة بطريقة إبداعية. جربها الآن، وشاركنا بأجمل الرسومات التي قمت بها باستخدام Turtle!
The Most Popular Turtle Codes to Make Drawing Fun and Easy!
Do you want to enjoy learning programming and creating amazing drawings at the same time? Then let me introduce you to some of the most popular codes in the Turtle library that will make drawing a fun and easy process!
1. Draw a Simple Square :
Start by drawing a square with the turtle. All you need is a for
loop to move the turtle and draw a square.
import turtle
t = turtle.Turtle()
for _ in range(4):
t.forward(100)
t.right(90)
turtle.done()
2. Draw a Shining Star :
With just 5 movements, you can draw a beautiful five-pointed star using the turtle.
import turtle
t = turtle.Turtle()
for _ in range(5):
t.forward(100)
t.right(144)
turtle.done()
3. A Perfect Circle, Easily Done :
Want to draw a perfect circle? Use this code, and you’ll get a circle with your chosen diameter.
import turtle
t = turtle.Turtle()
t.circle(100)
turtle.done()
4. Draw a Cheerful Flower :
You can draw an amazing flower simply by repeating circles with a slight rotation.
import turtle
t = turtle.Turtle()
for _ in range(36):
t.circle(50)
t.right(10)
turtle.done()
5. A Cool Spiral That Keeps Moving :
Use this code to make the turtle draw an expanding spiral that grows with each step.
import turtle
t = turtle.Turtle()
for i in range(100):
t.forward(i * 2)
t.right(45)
turtle.done()
6. Add Your Personal Touch with Colors :
Bring your drawings to life by changing the color of the pen used for drawing.
import turtle
t = turtle.Turtle()
t.pencolor("red")
for _ in range(4):
t.forward(100)
t.right(90)
turtle.done()
7. Hide the Turtle After Finishing the Drawing :
After you’ve finished drawing, you can hide the turtle to keep the focus on your artwork.
import turtle
t = turtle.Turtle()
t.hideturtle()
t.circle(100)
turtle.done()
8. Move Without Leaving a Trace :
If you want to move the turtle without leaving any trace on the screen, use penup()
and pendown()
for complete control.
import turtle
t = turtle.Turtle()
t.penup()
t.goto(100, 100)
t.pendown()
t.circle(50)
turtle.done()
With these simple codes, you can create amazing drawings and enjoy the fun of programming in a creative way. Try them out now, and share your best Turtle creations with us!