Ads

how to write text in python turtle graphics | write text in python canvas | python text font style | learn python turtle graphics

 #___________ WELCOME ALL OF YOU ON COMPUTER SOFT SKILLS CHANEEL __________

#......................... PYTHON PROGRAM TO WRITE TEXT IN PYTHON  .........................


import turtle

turtle.bgcolor('deeppink')

wn = turtle.Screen()

wn.setup(width=1350, height=750)

t=turtle.Turtle()


t.penup()

t.goto(0,300)

t.pendown()

t.color('Aqua')

style = ('Bradley Hand ITC',45,'bold')

t.write('Coding like poetry should be short and concise.', font=style, align='center',move=True)

t.hideturtle()


t.penup()

t.goto(-40,-50)

t.pendown()

t.color('Aqua')

style = ('Braddon bold',25,'bold')

t.color('Lime')

t.write('First solve the problem. Then, write the code. ', font=style, align='right',move=True)

t.hideturtle()


t.penup()

t.goto(30,-200)

t.pendown()

t.color('Black')

style = ('verdana',30,'italic')

t.write('Confusion is part of programming.', font=style, align='left', move=True)

t.hideturtle()


t.penup()

t.goto(450,-350)

t.pendown()

t.color('yellow')

style = ('harrington',35,'normal')

t.write('Programming is learned by writing programs.', font=style, align='right',move=True)

t.hideturtle()


turtle.done()




#______________ I HOPE YOU LIKE THIS PROGRAMMING _______________


#________________LIKE _________________SHARE _________________SUBSCRIBE ________________


Post a Comment

0 Comments