Google assistant is widely used ai assistant in this time so let's draw it with python. If you want then I can also make a google assistant in python and give you a tutorial let me know in the comment section
Code:
import turtle as t
t.hideturtle()
t.begin_fill()
t.fillcolor("blue")
t.circle(80)
t.end_fill()
t.penup()
t.goto(150,0)
t.pendown()
t.begin_fill()
t.fillcolor("red")
t.circle(40)
t.end_fill()
t.penup()
t.goto(150,-120)
t.pendown()
t.begin_fill()
t.fillcolor("yellow")
t.circle(50)
t.end_fill()
t.penup()
t.goto(205,95)
t.pendown()
t.begin_fill()
t.fillcolor("green")
t.circle(20)
t.end_fill()
t.penup()
t.goto(-100,-200)
t.pendown()
FONTSIZE = 25
FONT = ('Arial', FONTSIZE, 'normal')
t.write('Google Assistant', font=FONT)
t.done()
Comments
Post a Comment