Make Netflix Logo in Python

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!

Playlists
Python For Beginners:
Games made with Ursina Engine:

❤️ You want to support this channel? ❤️

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

#python #coding #tutorial #learncoding #learnprogramming
#it #pythontutorial #programming #learnpython
Рекомендации по теме
Комментарии
Автор

When You Want To Become An Artist But You Became A Programmer:

GravityFallsGaming
Автор

This is the type of stuff python users call them programmers after xd

i_am_gaming_gamer_game
Автор

CSS: I am the king of graphic design.
Python: Not anymore.

HikaruAkitsuki
Автор

I like your video explaining in very clearly without any query

spstatus
Автор

Turtle was one of the most fun things i had to experience in my programming path. Plus it's kinda nostalgic reminds me a lot of scratch from when i was still a kid :p

pororo
Автор

The oblique line in the center is of a darker color than those on the sides

Italy-or-Italia-
Автор

okay, can you do the animated transition after that logo?

steveblack
Автор

from turtle import *
bgcolor('black')
right(90)
pos = [(-40, 0), (40, 0)]
for x, y in pos:
up()
goto(x, y)
down()
fillcolor('red')
begin_fill()
for i in range(2):
forward(200)
left(90)
forward(40)
left(90)
end_fill()
up()
goto(-40, 0)
down()
left(22)
begin_fill()
for i in range(2):
forward(217)
left(68)
forward(40)
left(112)
end_fill()

CrazyMonkeyBoy
Автор

Your client : good, but who the hell want this. Go back to our data analyst project.

farid-frederick
Автор

Very similar to how it's really done (SVG with splines etc.)

Syndesi
Автор

Python turtle is basic, if you want a challenge try to do it with pygame

RN_
Автор

Would’ve been smoother if it was all one fluid motion, instead of skipping to another position it should’ve kept the motion going and created the diagonal before ending with the other pillar. If you drew with your hand do you draw an N going l l then \ or do you do l\ then l?

dionagona
Автор

Enjoy it
import turtle

# Set the background color to black
turtle.bgcolor("black")

# Set the turtle color to red
turtle.color("red")

# Create a turtle
t = turtle.Turtle()

# Set the turtle shape to a circle
t.shape("circle")

# Set the turtle speed to the maximum value
t.speed(0)

# Move the turtle to the starting position for the N
t.penup()
t.goto(-100, 100)
t.pendown()

# Draw the N
t.left(135)
t.forward(70)
t.right(90)
t.forward(70)
t.left(135)
t.forward(50)

# Move the turtle to the starting position for the E
t.penup()
t.goto(-50, 100)
t.pendown()

# Draw the E
t.left(90)
t.forward(70)
t.right(90)
t.forward(35)
t.right(90)
t.forward(35)
t.right(90)
t.forward(35)
t.right(90)
t.forward(70)

# Move the turtle to the starting position for the F
t.penup()
t.goto(0, 100)
t.pendown()

# Draw the F
t.left(90)
t.forward(70)
t.right(90)
t.forward(35)
t.right(90)
t.forward(35)
t.right(90)
t.forward(35)

# Move the turtle to the starting position for the L
t.penup()
t.goto(50, 100)
t.pendown()

# Draw the L
t.left(90)
t.forward(70)
t.right(90)
t.forward(50)

# Move the turtle to the starting position for the I
t.penup()
t.goto(100, 100)
t.pendown()

# Draw the I
t.left(90)
t.forward(70)
t.penup()
t.goto(115, 85)
t.pendown()
t.forward(20)

# Hide the turtle
t.hideturtle()

# Wait for the user to close the window
turtle.exitonclick()

seekhly
Автор

netflix 🚫
hearing the og/ nostalgic song ✅

Richtngle
Автор

You shouldn't import * from turtle. It's not a good practice. You can import turtle as t or import something from turtle, but don't do import *

lapppse
Автор

Can you please send this code in text form in discription

Keyslokesh
Автор

Python - отличный инструмент для дизайнера

nadzhafox
Автор

Почему 30 лет назад в древнем Бейсике мне хватило бы одной строки чтобы это нарисовать?

СИРОЖАСИРОЖЫН
Автор

But you can literally do it in your program paint

navawichlolxd
Автор

Please can u do an animated logo of Netflix ❤

Thunder_RTX