Complete Python Turtle Graphics Overview! (From Beginner to Advanced)

preview_player
Показать описание

In this video I walk through the Turtle Graphics library of Python. This is a perfect video for people just starting out programming to visualize their work. If you have any questions about this video, leave a comment down below!

Feel free to watch on 1.25x or 1.5x speed to learn faster!

Link to Turtle Documentation:

Source Code for this video!

First video in my Python Programming series:

I will be uploading tutorial videos weekly, so don't forget to SUBSCRIBE to not miss anything :)

-------------------------
Follow me on social media!

-------------------------

*I use affiliate links on the products that I recommend. I may earn a purchase commission or a referral bonus from the usage of these links.
Рекомендации по теме
Комментарии
Автор

Video Outline!
0:25 - All Examples seen in this Video
1:40 - Turtle Setup
2:48 - Basic Lines & Turns
5:22 - Creating Simple Shapes (Squares)
8:00 - Common Mistakes
8:30 - Adding color in Turtle
11:46 - Pen up, Pen Down
15:16 - Creating Complex Shapes (Flowers)
22:19 - Using Math Library in Drawings
26:41 - Recursive Stars Example

Feel free to watch on 1.25x or 1.5x to learn faster!

Thanks for watching :)

SUBSCRIBE for future tutorials like this

KeithGalli
Автор

"You made a square, yay!" That also was my reaction as well when I did it. Programming is awesome.

KaosWater
Автор

My man stayed up at 3am to educate us.
respect, bro.

nourgamer
Автор

You're doing a amazing job helping beginners like me try my hands at Python and see visual, tangible results. Thanks for that!

dieunest-fleur
Автор

Through this tutorial, I went from knowing nothing to being able to do fun & cool patterns. Great video. Thanks!

stopmotionmaker
Автор

Thank you for showing us what a newbie would do, then for showing us how it can be done to save time and typing, or in other words, the proper way to do the coding. You are the best teacher!

girlintheyellowdresscrafts
Автор

THANK you. You are officially saving my coding grades right now man.

halcyondays
Автор

Thanks Keith, this helped me out so much. You have such a good way of explaining things without them being over complicated. In fact I think I might show this to my students when I teach it! :)

chrissellings
Автор

Thank you Keith, you are a wonderful instructor! Very clear and precise.

stevemcgowan
Автор

thank youu ure a good teacher ! loved the way u think nd how u knew the cause of the errors especially in the last graph 😍 ..keep it up ❤

spiritedaway
Автор

Hey @Keith Galli! I recently found out your channel. I'm new at python and your videos are so helpful. Thanks a lot!

Me-mnkg
Автор

It's 8:52pm, my intro to programming final is due soon. Thank you for this, you're a life saver

jerichofischer
Автор

Thanks, man. I think you did a better job of explaining it than my instructor did.

jamesstahler
Автор

thank you, i really like the video and how you explained the concepts. I found it easy to understand and most of all fun. I liked how you told us to give a try at some shapes so that we could try to figure out oursleves how it works! Great video liked and subscribed

Leopardhound
Автор

Thanks for the help, I was trying to graph something using turtle and this video helped a lot.

creativecarveciteclimb
Автор

Some script i have made:
import turtle
n = 10
d = [360/n, n]
a = turtle.Turtle()
for i in range(d[1]):
a.left(d[0])
a.forward(5)
turtle.done()
It will draw a polygon of "n" sides
N = 10 -> decagon

renomado
Автор

I'm looking forward to more videos like this, appreciate this videos

leopillay
Автор

20:14 I just love how you're making this at 2:30AM

zaramomadi
Автор

Excellent stuff! Really easy to understand without all the 'technical' jargon. I now feel like I can do this Pythonning thing, yippeeee!!!!

colinhammerton
Автор

Hey Keith it was my first time using python to create something and your tutorial just helped me a lot
Thanks for the video
Subscribed

DHRUML