Make Among Us Logo in Python (Easy)

preview_player
Показать описание
This video is a short python tutorial, and it is part of the python shorts programming series.

If you enjoy python shorts videos to learn programming,
like and subscribe for more python shorts videos!

❤️ You want to support this channel? ❤️

Playlists
Python For Beginners:

Games made with Ursina Engine:

Song: Different Heaven - Nekozilla [NCS Release]
Music provided by NoCopyrightSounds

#python #amongus #coding
Рекомендации по теме
Комментарии
Автор

Code:

from turtle import *


fillcolor('red')
begin_fill()
pensize(7)
right(90)
forward(50)
for n in [
(30, 200), (90, 200), (30, 50)
]:
circle(n[0], 180)
forward(n[1])
right(90)
forward(60)
end_fill()

penup()
goto(0, 100)
pendown()


fillcolor('#DAE7E9')
begin_fill()
for i in range(2):
forward(50)
circle(40, 180)
end_fill()


penup()
goto(-122, 150)
pendown()

left(180)
fillcolor('red')
begin_fill()
for i in [20, 150]:
forward(i)
circle(10, 90)
forward(20)
end_fill()
done()

itzbella_playz
Автор

Bro how to get that image as output from python code

ngfnithingaming
Автор

Make cyberlife sign from Detroit becoming human next

DIYRobotGirl
Автор

bro for me it is not working...plz can u make a tutorial slowly and properly??

mibbieditz
Автор

All the year i knew python, theres was AN AUTOMATIC CIRCLE??! unfair :_(

Spherius