Basic Animation in Python 3 Part 1: Basic Principles

preview_player
Показать описание
In this series I explain how animation works and how to code animated sprites in Python 3 using the Turtle Module.

NEED HELP?

❤️❤️ SHOW SOME LOVE AND SUPPORT THE CHANNEL ❤️❤️

Click Join and Become a Channel Member Today!
Channel members can get preferential comment replies, early access to new content, members only live streams, and access to my private Discord.

Amazon Affiliate Links

Other Affiliate Links

LINKS

LEARN MORE PYTHON

LEARN MORE JAVA

#Python #Tutorial #Beginner
Рекомендации по теме
Комментарии
Автор

thank you so much. I was looking for an easy way to animate with python and everyone just seem to try to sell me a new Extension. But because of you I learned about "turtle"

freshxhdkmd
Автор

I would love to have you as my teacher, you are building people's future careers and lives. Much love!

tylerr
Автор

I have the sense that this tutorial is EXACTLY the thing I was looking for. Nice first video, looking forward to the rest :)

xDMrGarrison
Автор

"I am gonna go with square because I am kinda boring" Hunaour with education, now that's a premium coding tutorial! I bet if you are a teacher, you student love you!

mummydaddybacha-
Автор

Christian! Thanks as always❗️your video are so helpful!!

スイ-xm
Автор

Animations in Python...

Just what I had been searching about it recently by how to make games by sprites in Python.

Thank you so much for this tutorial...

💯💯💯💯💯💯💯

SkyFly
Автор

that is a very good basic for a beginner. it helped me so much

YoungJeremy
Автор

#5:56 "Greatest animation of the world " Lol😂

amankr
Автор

Nice Tutorial Sir, thanks, now i can make anime from my home, from my computer 🤣🔥❤️ keep making tutorial Sir! Btw, are you from japan?

日本語大好き
Автор

Thanks Bro
I am Supporting from Pakistan

swaggyoye
Автор

Wow, you're still replying to the comments after more than a year!

namesurname
Автор

Do you think you can make a tutorial for creating a python animated typing game? Possibly a 2D zombie theme? :) would love to watch and learn!

WeTheBrillantes
Автор

even without the * wn.mainloop*, my windows is still open
why is it that for me, I am in 2020, macbook as well.
its not really a problem but Im just curious

Krivplayzz
Автор

sir I am interested in joining the class I am 10 years old and want to code and how can I join

Flashxyz
Автор

how do you make the size of the shapes bigger?

estherahn
Автор

Can you make javascript tutorials in the feuture?

ollerius
Автор

Thank you for the good lectures. I have a problem even at the very beginning. This is the error message. "TclError: no display name and no $DISPLAY environment variable". Can anybody help me solve this problem? Currently, I am using CoLab for this coding. I checked the StackOverflow, but hard to find an answer for this error. Thank you in advance.

alwaysmarine
Автор

If I have a player lets say a car and I want it to like rotate it like a reel car how do i do that? So how do i rotate a player?

anamaly
Автор

On which app you are writing this code sir

codewithpk
Автор

this is my code so uh help

import turtle
import time

wn = turtle.Screen()
wn.title("Animacija")
wn.bgcolor("black")

player = turtle.Turtle()
player.shape = ("circle")
player.color = ("green")

while True:
player.shape("circle")
time.sleep(0.5)
player.shape("square")
time.sleep(0.5)



wn.mainloop()

TypeError: 'str' object is not callable.


Please help

lifeblood