SlideShare a Scribd company logo
1 of 6
lphabet = {
'A': ((0,0),(0.5,1),(0.75,0.5),(0.25,0.5),(0.75,0.5),(1,0)),
'B': ((0,0),(0,1),(0.625
,1),(0.75,0.875),(0.75,0.625),(0.625,0.5),(0,0.5),(0.625,0.5),(0.7
5,0.375),(0.75,0.125),(0.625,0),(0,0)),
'C':
((0.75,0.125),(0.625,0),(0.125,0),(0,0.125),(0,0.875),(0.125,1),(
0.625,1),(0.75,0.875)),
'D': ((0,0),(0,1),(0.625
,1),(0.75,0.875),(0.75,0.125),(0.625,0),(0,0)),
'E': ((0.75,0),(0,0),(0,0.5),(0.75,0.5),(0,0.5),(0,1),(0.75,1)),
'F': ((0,0),(0,0.5),(0.75,0.5),(0,0.5),(0,1),(0.75,1)),
'G':
((0.75,0.5),(0.625,0.5),(0.75,0.5),(0.75,0.125),(0.625,0),(0.125,
0),(0,0.125),(0,0.875),(0.125,1),(0.625,1),(0.75,0.875)),
'H': ((0,0),(0,1),(0,0.5),(0.75,0.5),(0.75,1),(0.75,0)),
'I': ((0,0),(0.25,0),(0.125,0),(0.125,1),(0,1),(0.25,1)),
'J': ((0,0.125),(0.125,0),(0.375,0),(0.5,0.125),(0.5,1)),
'K': ((0,0),(0,1),(0,0.5),(0.75,1),(0,0.5),(0.75,0)),
'L': ((0,0),(0,1),(0,0),(0.75,0)),
'M': ((0,0),(0,1),(0.5,0),(1,1),(1,0)),
'N': ((0,0),(0,1),(0.75,0),(0.75,1)),
'O':
((0.75,0.125),(0.625,0),(0.125,0),(0,0.125),(0,0.875),(0.125,1),(
0.625,1),(0.75,0.875),(0.75,0.125)),
'P':
((0,0),(0,1),(0.625,1),(0.75,0.875),(0.75,0.625),(0.625,0.5),(0,0.
5)),
'Q':
((0.75,0.125),(0.625,0),(0.125,0),(0,0.125),(0,0.875),(0.125,1),(
0.625,1),(0.75,0.875),(0.75,0.125),(0.875,0)),
'R':
((0,0),(0,1),(0.625,1),(0.75,0.875),(0.75,0.625),(0.625,0.5),(0,0.
5),(0.625,0.5),(0.875,0)),
'S':
((0,0.125),(0.125,0),(0.625,0),(0.75,0.125),(0.75,0.375),(0.675,0
.5),(0.125,0.5),(0,0.625),(0,0.875),(0.125,1),(0.625,1),(0.75,0.8
75)),
'T': ((0,1),(0.5,1),(0.5,0),(0.5,1),(1,1)),
'U':
((0,1),(0,0.125),(0.125,0),(0.625,0),(0.75,0.125),(0.75,1)),
'V': ((0,1),(0.375,0),(0.75,1)),
'W': ((0,1),(0.25,0),(0.5,1),(0.75,0),(1,1)),
'X':
((0,0),(0.375,0.5),(0,1),(0.375,0.5),(0.75,1),(0.375,0.5),(0.75,0))
,
'Y': ((0,1),(0.375,0.5),(0.375,0),(0.375,0.5),(0.75,1)),
'Z': ((0,1),(0.75,1),(0,0),(0.75,0)),
}
#Python Turtle - WordArt Challenge -
www.101computing.net/python-turtle-wordart-challenge/
import turtle
import random
from alphabet import alphabet
from math import cos, sin, atan2, radians, degrees
myPen = turtle.Turtle()
myPen.hideturtle()
myPen.speed(0)
window = turtle.Screen()
window.bgcolor("#000000")
myPen.pensize(2)
def displayMessage(message,fontSize,color,x,y,rotationAngle):
myPen.color(color)
message=message.upper()
myPen.penup()
myPen.goto(x,y)
for character in message:
if character in alphabet:
letter=alphabet[character]
myPen.setheading(rotationAngle)
myPen.penup()
x=0
y=0
for dot in letter:
angle = atan2((dot[1]-y),(dot[0]-x))
angle= degrees(angle)
distance = ((dot[0]-x)**2 + (dot[1]-y)**2)**0.5
myPen.setheading(rotationAngle)
myPen.left(angle)
myPen.forward(distance*fontSize)
x = dot[0]
y = dot[1]
myPen.pendown()
myPen.penup()
angle = atan2((0-y),(0-x))
angle = degrees(angle)
distance = ((0-x)**2 + (0-y)**2)**0.5
myPen.setheading(rotationAngle)
myPen.left(angle)
myPen.forward(distance*fontSize)
myPen.setheading(rotationAngle)
myPen.penup()
myPen.forward(fontSize)
myPen.forward(characterSpacing)
#Main Program Starts Here
fontSize = 30
fontColor="#FF00FF"
characterSpacing = 5
message = "Hello World"
displayMessage(message,fontSize,fontColor,-170,-100,30)
i need explanation of each line how it works and what is the
meaning of eachb syntex ?

More Related Content

More from wkyra78

Meaning-Making Forum 2 (Week 5)Meaning-Making Forums 1-4 are thi.docx
Meaning-Making Forum 2 (Week 5)Meaning-Making Forums 1-4 are thi.docxMeaning-Making Forum 2 (Week 5)Meaning-Making Forums 1-4 are thi.docx
Meaning-Making Forum 2 (Week 5)Meaning-Making Forums 1-4 are thi.docxwkyra78
 
MBA6231 - 1.1 - project charter.docxProject Charter Pr.docx
MBA6231 - 1.1 - project charter.docxProject Charter Pr.docxMBA6231 - 1.1 - project charter.docxProject Charter Pr.docx
MBA6231 - 1.1 - project charter.docxProject Charter Pr.docxwkyra78
 
Medication Errors Led to Disastrous Outcomes1. Search th.docx
Medication Errors Led to Disastrous Outcomes1. Search th.docxMedication Errors Led to Disastrous Outcomes1. Search th.docx
Medication Errors Led to Disastrous Outcomes1. Search th.docxwkyra78
 
Meet, call, Skype or Zoom with a retired athlete and interview himh.docx
Meet, call, Skype or Zoom with a retired athlete and interview himh.docxMeet, call, Skype or Zoom with a retired athlete and interview himh.docx
Meet, call, Skype or Zoom with a retired athlete and interview himh.docxwkyra78
 
Medication Administration Make a list of the most common med.docx
Medication Administration Make a list of the most common med.docxMedication Administration Make a list of the most common med.docx
Medication Administration Make a list of the most common med.docxwkyra78
 
media portfolio”about chapter 1 to 15 from the book  Ci.docx
media portfolio”about chapter 1 to 15 from the book  Ci.docxmedia portfolio”about chapter 1 to 15 from the book  Ci.docx
media portfolio”about chapter 1 to 15 from the book  Ci.docxwkyra78
 
MediationNameAMUDate.docx
MediationNameAMUDate.docxMediationNameAMUDate.docx
MediationNameAMUDate.docxwkyra78
 
Media coverage influences the publics perception of the crimina.docx
Media coverage influences the publics perception of the crimina.docxMedia coverage influences the publics perception of the crimina.docx
Media coverage influences the publics perception of the crimina.docxwkyra78
 
Media Content AnalysisPurpose Evaluate the quality and value of.docx
Media Content AnalysisPurpose Evaluate the quality and value of.docxMedia Content AnalysisPurpose Evaluate the quality and value of.docx
Media Content AnalysisPurpose Evaluate the quality and value of.docxwkyra78
 
Mayan gods and goddesses are very much a part of this text.  Their i.docx
Mayan gods and goddesses are very much a part of this text.  Their i.docxMayan gods and goddesses are very much a part of this text.  Their i.docx
Mayan gods and goddesses are very much a part of this text.  Their i.docxwkyra78
 
Media and SocietyIn 1,100 words, complete the followingAn.docx
Media and SocietyIn 1,100 words, complete the followingAn.docxMedia and SocietyIn 1,100 words, complete the followingAn.docx
Media and SocietyIn 1,100 words, complete the followingAn.docxwkyra78
 
MBA 5110 – Business Organization and ManagementMidterm ExamAns.docx
MBA 5110 – Business Organization and ManagementMidterm ExamAns.docxMBA 5110 – Business Organization and ManagementMidterm ExamAns.docx
MBA 5110 – Business Organization and ManagementMidterm ExamAns.docxwkyra78
 
Media & Culture AssignmentFor this assignment, you are to develo.docx
Media & Culture AssignmentFor this assignment, you are to develo.docxMedia & Culture AssignmentFor this assignment, you are to develo.docx
Media & Culture AssignmentFor this assignment, you are to develo.docxwkyra78
 
ME290 Global Engineering Professional Seminar Engine.docx
ME290 Global Engineering Professional Seminar Engine.docxME290 Global Engineering Professional Seminar Engine.docx
ME290 Global Engineering Professional Seminar Engine.docxwkyra78
 
ME290 Global Engineering Professional Seminar Knowl.docx
ME290  Global Engineering Professional Seminar Knowl.docxME290  Global Engineering Professional Seminar Knowl.docx
ME290 Global Engineering Professional Seminar Knowl.docxwkyra78
 
Meaning-Making Forum 1 (Week 4)Meaning-Making Forums 1-4 are thi.docx
Meaning-Making Forum 1 (Week 4)Meaning-Making Forums 1-4 are thi.docxMeaning-Making Forum 1 (Week 4)Meaning-Making Forums 1-4 are thi.docx
Meaning-Making Forum 1 (Week 4)Meaning-Making Forums 1-4 are thi.docxwkyra78
 
MBA 705 Milestone Two Guidelines and Rubric Overview.docx
MBA 705 Milestone Two Guidelines and Rubric  Overview.docxMBA 705 Milestone Two Guidelines and Rubric  Overview.docx
MBA 705 Milestone Two Guidelines and Rubric Overview.docxwkyra78
 
MBA 599 – Strategic Management Case Project This capsto.docx
MBA 599 – Strategic Management Case Project  This capsto.docxMBA 599 – Strategic Management Case Project  This capsto.docx
MBA 599 – Strategic Management Case Project This capsto.docxwkyra78
 
MBA 6961, Project Management 1 Course Learning Outcomes .docx
MBA 6961, Project Management 1 Course Learning Outcomes .docxMBA 6961, Project Management 1 Course Learning Outcomes .docx
MBA 6961, Project Management 1 Course Learning Outcomes .docxwkyra78
 
May 4 Answer SheetExercise 11. Parietal bone.2. Sphenoid .docx
May 4 Answer SheetExercise 11. Parietal bone.2. Sphenoid .docxMay 4 Answer SheetExercise 11. Parietal bone.2. Sphenoid .docx
May 4 Answer SheetExercise 11. Parietal bone.2. Sphenoid .docxwkyra78
 

More from wkyra78 (20)

Meaning-Making Forum 2 (Week 5)Meaning-Making Forums 1-4 are thi.docx
Meaning-Making Forum 2 (Week 5)Meaning-Making Forums 1-4 are thi.docxMeaning-Making Forum 2 (Week 5)Meaning-Making Forums 1-4 are thi.docx
Meaning-Making Forum 2 (Week 5)Meaning-Making Forums 1-4 are thi.docx
 
MBA6231 - 1.1 - project charter.docxProject Charter Pr.docx
MBA6231 - 1.1 - project charter.docxProject Charter Pr.docxMBA6231 - 1.1 - project charter.docxProject Charter Pr.docx
MBA6231 - 1.1 - project charter.docxProject Charter Pr.docx
 
Medication Errors Led to Disastrous Outcomes1. Search th.docx
Medication Errors Led to Disastrous Outcomes1. Search th.docxMedication Errors Led to Disastrous Outcomes1. Search th.docx
Medication Errors Led to Disastrous Outcomes1. Search th.docx
 
Meet, call, Skype or Zoom with a retired athlete and interview himh.docx
Meet, call, Skype or Zoom with a retired athlete and interview himh.docxMeet, call, Skype or Zoom with a retired athlete and interview himh.docx
Meet, call, Skype or Zoom with a retired athlete and interview himh.docx
 
Medication Administration Make a list of the most common med.docx
Medication Administration Make a list of the most common med.docxMedication Administration Make a list of the most common med.docx
Medication Administration Make a list of the most common med.docx
 
media portfolio”about chapter 1 to 15 from the book  Ci.docx
media portfolio”about chapter 1 to 15 from the book  Ci.docxmedia portfolio”about chapter 1 to 15 from the book  Ci.docx
media portfolio”about chapter 1 to 15 from the book  Ci.docx
 
MediationNameAMUDate.docx
MediationNameAMUDate.docxMediationNameAMUDate.docx
MediationNameAMUDate.docx
 
Media coverage influences the publics perception of the crimina.docx
Media coverage influences the publics perception of the crimina.docxMedia coverage influences the publics perception of the crimina.docx
Media coverage influences the publics perception of the crimina.docx
 
Media Content AnalysisPurpose Evaluate the quality and value of.docx
Media Content AnalysisPurpose Evaluate the quality and value of.docxMedia Content AnalysisPurpose Evaluate the quality and value of.docx
Media Content AnalysisPurpose Evaluate the quality and value of.docx
 
Mayan gods and goddesses are very much a part of this text.  Their i.docx
Mayan gods and goddesses are very much a part of this text.  Their i.docxMayan gods and goddesses are very much a part of this text.  Their i.docx
Mayan gods and goddesses are very much a part of this text.  Their i.docx
 
Media and SocietyIn 1,100 words, complete the followingAn.docx
Media and SocietyIn 1,100 words, complete the followingAn.docxMedia and SocietyIn 1,100 words, complete the followingAn.docx
Media and SocietyIn 1,100 words, complete the followingAn.docx
 
MBA 5110 – Business Organization and ManagementMidterm ExamAns.docx
MBA 5110 – Business Organization and ManagementMidterm ExamAns.docxMBA 5110 – Business Organization and ManagementMidterm ExamAns.docx
MBA 5110 – Business Organization and ManagementMidterm ExamAns.docx
 
Media & Culture AssignmentFor this assignment, you are to develo.docx
Media & Culture AssignmentFor this assignment, you are to develo.docxMedia & Culture AssignmentFor this assignment, you are to develo.docx
Media & Culture AssignmentFor this assignment, you are to develo.docx
 
ME290 Global Engineering Professional Seminar Engine.docx
ME290 Global Engineering Professional Seminar Engine.docxME290 Global Engineering Professional Seminar Engine.docx
ME290 Global Engineering Professional Seminar Engine.docx
 
ME290 Global Engineering Professional Seminar Knowl.docx
ME290  Global Engineering Professional Seminar Knowl.docxME290  Global Engineering Professional Seminar Knowl.docx
ME290 Global Engineering Professional Seminar Knowl.docx
 
Meaning-Making Forum 1 (Week 4)Meaning-Making Forums 1-4 are thi.docx
Meaning-Making Forum 1 (Week 4)Meaning-Making Forums 1-4 are thi.docxMeaning-Making Forum 1 (Week 4)Meaning-Making Forums 1-4 are thi.docx
Meaning-Making Forum 1 (Week 4)Meaning-Making Forums 1-4 are thi.docx
 
MBA 705 Milestone Two Guidelines and Rubric Overview.docx
MBA 705 Milestone Two Guidelines and Rubric  Overview.docxMBA 705 Milestone Two Guidelines and Rubric  Overview.docx
MBA 705 Milestone Two Guidelines and Rubric Overview.docx
 
MBA 599 – Strategic Management Case Project This capsto.docx
MBA 599 – Strategic Management Case Project  This capsto.docxMBA 599 – Strategic Management Case Project  This capsto.docx
MBA 599 – Strategic Management Case Project This capsto.docx
 
MBA 6961, Project Management 1 Course Learning Outcomes .docx
MBA 6961, Project Management 1 Course Learning Outcomes .docxMBA 6961, Project Management 1 Course Learning Outcomes .docx
MBA 6961, Project Management 1 Course Learning Outcomes .docx
 
May 4 Answer SheetExercise 11. Parietal bone.2. Sphenoid .docx
May 4 Answer SheetExercise 11. Parietal bone.2. Sphenoid .docxMay 4 Answer SheetExercise 11. Parietal bone.2. Sphenoid .docx
May 4 Answer SheetExercise 11. Parietal bone.2. Sphenoid .docx
 

Recently uploaded

محاضرات الاحصاء التطبيقي لطلاب علوم الرياضة.pdf
محاضرات الاحصاء التطبيقي لطلاب علوم الرياضة.pdfمحاضرات الاحصاء التطبيقي لطلاب علوم الرياضة.pdf
محاضرات الاحصاء التطبيقي لطلاب علوم الرياضة.pdfKhaled Elbattawy
 
ClimART Action | eTwinning Project
ClimART Action    |    eTwinning ProjectClimART Action    |    eTwinning Project
ClimART Action | eTwinning ProjectNuckles
 
Saunanaine_Helen Moppel_JUHENDATUD SAUNATEENUSE JA LOODUSMATKA SÜNERGIA_strat...
Saunanaine_Helen Moppel_JUHENDATUD SAUNATEENUSE JA LOODUSMATKA SÜNERGIA_strat...Saunanaine_Helen Moppel_JUHENDATUD SAUNATEENUSE JA LOODUSMATKA SÜNERGIA_strat...
Saunanaine_Helen Moppel_JUHENDATUD SAUNATEENUSE JA LOODUSMATKA SÜNERGIA_strat...Eesti Loodusturism
 
Català Individual 3r - Víctor.pdf JOCS FLORALS
Català Individual 3r - Víctor.pdf JOCS FLORALSCatalà Individual 3r - Víctor.pdf JOCS FLORALS
Català Individual 3r - Víctor.pdf JOCS FLORALSErnest Lluch
 
RESOLUCION DEL SIMULACRO UNMSM 2023 ii 2.pptx
RESOLUCION DEL SIMULACRO UNMSM 2023 ii 2.pptxRESOLUCION DEL SIMULACRO UNMSM 2023 ii 2.pptx
RESOLUCION DEL SIMULACRO UNMSM 2023 ii 2.pptxscbastidasv
 
Castellà parelles 2n - Abril i Irina.pdf
Castellà parelles 2n - Abril i Irina.pdfCastellà parelles 2n - Abril i Irina.pdf
Castellà parelles 2n - Abril i Irina.pdfErnest Lluch
 
Català parelles 3r - Emma i Ariadna (1).pdf
Català parelles 3r - Emma i Ariadna (1).pdfCatalà parelles 3r - Emma i Ariadna (1).pdf
Català parelles 3r - Emma i Ariadna (1).pdfErnest Lluch
 

Recently uploaded (8)

محاضرات الاحصاء التطبيقي لطلاب علوم الرياضة.pdf
محاضرات الاحصاء التطبيقي لطلاب علوم الرياضة.pdfمحاضرات الاحصاء التطبيقي لطلاب علوم الرياضة.pdf
محاضرات الاحصاء التطبيقي لطلاب علوم الرياضة.pdf
 
ClimART Action | eTwinning Project
ClimART Action    |    eTwinning ProjectClimART Action    |    eTwinning Project
ClimART Action | eTwinning Project
 
Díptic IFE (2) ifeifeifeife ife ife.pdf
Díptic IFE (2)  ifeifeifeife ife ife.pdfDíptic IFE (2)  ifeifeifeife ife ife.pdf
Díptic IFE (2) ifeifeifeife ife ife.pdf
 
Saunanaine_Helen Moppel_JUHENDATUD SAUNATEENUSE JA LOODUSMATKA SÜNERGIA_strat...
Saunanaine_Helen Moppel_JUHENDATUD SAUNATEENUSE JA LOODUSMATKA SÜNERGIA_strat...Saunanaine_Helen Moppel_JUHENDATUD SAUNATEENUSE JA LOODUSMATKA SÜNERGIA_strat...
Saunanaine_Helen Moppel_JUHENDATUD SAUNATEENUSE JA LOODUSMATKA SÜNERGIA_strat...
 
Català Individual 3r - Víctor.pdf JOCS FLORALS
Català Individual 3r - Víctor.pdf JOCS FLORALSCatalà Individual 3r - Víctor.pdf JOCS FLORALS
Català Individual 3r - Víctor.pdf JOCS FLORALS
 
RESOLUCION DEL SIMULACRO UNMSM 2023 ii 2.pptx
RESOLUCION DEL SIMULACRO UNMSM 2023 ii 2.pptxRESOLUCION DEL SIMULACRO UNMSM 2023 ii 2.pptx
RESOLUCION DEL SIMULACRO UNMSM 2023 ii 2.pptx
 
Castellà parelles 2n - Abril i Irina.pdf
Castellà parelles 2n - Abril i Irina.pdfCastellà parelles 2n - Abril i Irina.pdf
Castellà parelles 2n - Abril i Irina.pdf
 
Català parelles 3r - Emma i Ariadna (1).pdf
Català parelles 3r - Emma i Ariadna (1).pdfCatalà parelles 3r - Emma i Ariadna (1).pdf
Català parelles 3r - Emma i Ariadna (1).pdf
 

lphabet = {    A ((0,0),(0.5,1),(0.75,0.5),(0.25,0.5),(0.75,0.docx