About two months have passed since I started learning Python. I still don't fully understand functions and there are so many things I don't know. Even so, I continue to move forward by reading books ...
The first challenge was a program that draws a regular pentagon in just five lines. from turtle import * n = 5 for i in range(n): fd(100) lt(360 / n) mainloop() While ...
Time to take a deep breath and get your craft on.