Python pattern design | tkinter tutorial | python gui | pycharm| python gui tutorial

Published: 26 December 2020
on channel: technical baba
260
38

In this Python programming video tutorial we will learn about turtle graphics in detail.

Turtle graphics is a popular way for introducing programming to kids. It was part of the original Logo programming language developed by Wally Feurzig and Seymour Papert in 1966.

In this tutorial we will draw a pattern with 5 circles.

#PythonProgramming #Python #PythonCourse #PythonGraphics




Github url-https://github.com/rajiv786


import turtle
t=turtle.Turtle()
list1=["yellow","red","blue","green"]
t.up()
t.goto(200,0)
for i in range(4):
t.down()
t.color(list1[i])
t.pensize(20)
t.circle(100)
t.up()
t.bk(100)


On this page of the site you can watch the video online Python pattern design | tkinter tutorial | python gui | pycharm| python gui tutorial with a duration of hours minute second in good quality, which was uploaded by the user technical baba 26 December 2020, share the link with friends and acquaintances, this video has already been watched 260 times on youtube and it was liked by 38 viewers. Enjoy your viewing!