INTERACTIVE ONLINE COURSE

Python 3

FOR BEGINNERS


"The first Python course that simply amazed me. Very well explained and easy to understand." (Alexandru Cosmin)

"The best Python course in Romania." (Iulian Geană)


ALL REVIEWS
COMUNITY
EXERCISES
Computer Science - Problem Collection in Python


The 'turtle' Module [Back to Index]

Page:
/ 1     
1. Using the for statement, draw a trapezoid with a side length of 120 pixels. Choose the angles and the line color yourself.

[solve in editor]

Author: admin | Code: #11 | Easy
2. Using the "turtle" module, create a star using two colors of your choice.

[solve in editor]

Author: Macovei Andrei | Code: #18 | Hard
3. Using the "turtle" module, create 3 concentric circles, using 3 colors of your choice.

[solve in editor]

Author: Elena Topala | Code: #39 | Easy
4. Using the "turtle" module, can you create the Olympic Games symbol?

[solve in editor]

Author: Elena Topala | Code: #43 | Easy
5. Using the "turtle" module, draw the logos of the following car companies:

a) Audi;
b) Mitsubishi;
c) Mercedes.

Search for the corresponding images on the Internet!

[solve in editor]

Author: Elena Topala | Code: #45 | Medium
6. Using the "turtle" module, draw the number 88.

[solve in editor]

Author: Elena Topala | Code: #49 | Easy
7. Draw a rainbow by drawing a single line whose color changes every 3 seconds. Only the commands t.forward(); t.penup(); t.pendown(); t.color() can be used.

[solve in editor]

Author: Adrian Gramus | Code: #86 | Easy
8. Animation. Try to stylize a digit, letter, or figure and "move" it on the Turtle screen. Can you?

Hints. To clear the screen, you can use the function clearscreen(), and delay(ms) delays the execution of the next instruction by the number of milliseconds given as a parameter.

[solve in editor]

Author: RADULESCU BARBU CRISTIAN | Code: #72 | Medium
9. Max the Puppy hurt his paw. Now he has to go to the vet. Max is afraid of the vet. Send him some encouragement to make him feel better. How will you do that? Draw a heart using circles. Max likes to catch circles, so he will be very happy with your surprise. How will you proceed? You will draw the heart on multiple rows. On the first row, draw two circles. On the second row, draw seven circles. On the third row, draw five circles. On the penultimate row, draw three circles. The last row will contain one circle. Since you will decide the diameter yourself, you will also need to think about how the circles will be centered on each row. Good luck! Let's make Max happy!

[solve in editor]

Author: Iulia Gheorghe | Code: #108 | Easy
Page:
/ 1     
Choose one of the proposed problems ...
 arrow_back   home   perm_identity   list   arrow_upward