Python Turtle(PART-3)| Python turtle graphics|python turtle for beginners |CodeWithTuqi

Опубликовано: 05 Февраль 2022
на канале: Computer Science Information technology
32
0

In this video, we will create different figures especially square
----------------
| |
| |
----------------
In this video when we enter into loop body we can press the tab to move forward
.
up arrow for the previous command.
__________________________________________
Code for square:
draw square in #Python #Turtle
import turtle

t = turtle.Turtle()

s = int(input("Enter the length of the side of the Square: "))

drawing first side
t.forward(s) # Forward turtle by s units
t.left(90) # Turn turtle by 90 degree

drawing second side
t.forward(s) # Forward turtle by s units
t.left(90) # Turn turtle by 90 degree

drawing third side
t.forward(s) # Forward turtle by s units
t.left(90) # Turn turtle by 90 degree

drawing fourth side
t.forward(s) # Forward turtle by s units
t.left(90) # Turn turtle by 90 degree
_____________________________________________
for loop:
for _ in range(1,6):
t.forward(s) # Forward turtle by s units
t.left(90) # Turn turtle by 90 degree
________________________________________________
draw Rectangle in Python Turtle
import turtle

t = turtle.Turtle()

l = int(input("Enter the length of the Rectangle: "))
w = int(input("Enter the width of the Rectangle: "))

drawing first side
t.forward(l) # Forward turtle by l units
t.left(90) # Turn turtle by 90 degree

drawing second side
t.forward(w) # Forward turtle by w units
t.left(90) # Turn turtle by 90 degree

drawing third side
t.forward(l) # Forward turtle by l units
t.left(90) # Turn turtle by 90 degree

drawing fourth side
t.forward(w) # Forward turtle by w units
t.left(90) # Turn turtle by 90 degree
__________________________________________________________

You should check the last videos
   • Python Turtle Graphics(PART-2) |What is Py...  
Turtle playlist-   • Python Turtle Tutorial|Python turtle graph...  
__________________________________________________________________


#codeWithTuqi
Entire playlists!!   / csit399  .
Please, guys, like and subscribe to my channel!!


На этой странице сайта вы можете посмотреть видео онлайн Python Turtle(PART-3)| Python turtle graphics|python turtle for beginners |CodeWithTuqi длительностью часов минут секунд в хорошем качестве, которое загрузил пользователь Computer Science Information technology 05 Февраль 2022, поделитесь ссылкой с друзьями и знакомыми, на youtube это видео уже посмотрели 32 раз и оно понравилось 0 зрителям. Приятного просмотра!