<html><body>
<DIV>Alan Gilfoy wrote:<BR><BR>&gt; Is there a way in Python to separate a string into its component words.<BR></DIV>
<DIV>&nbsp;</DIV>
<DIV>you could do something like this:</DIV>
<DIV>&nbsp;</DIV>
<DIV>&gt;&gt;&gt; x = Is there a way in Python to seperate a string into its compontent words.</DIV>
<DIV>&gt;&gt;&gt; x.split()</DIV>
<DIV>&nbsp;</DIV>
<DIV>that would yield:</DIV>
<DIV>&nbsp;</DIV>
<DIV>['Is', 'there', 'a', 'way', 'in', 'Python', 'to', 'separate', 'a', 'string', 'into', 'its', 'component', 'words.']<BR></DIV>
<DIV>&nbsp;</DIV>
<DIV>As far as teh translating to pig latin.....well I honestly don't know.</DIV></body></html>