Stopping a nested for loop fro Pig Latin translatorSpeed up a for loop when checking variables in two long nested listsLooping through nested lists and keeping track of itPython writing nested loop to fileNested While Loop not working in pythonConvert a nested for loop that increments the integer value of dictionary pair into a list comprehensionWill a nest loop help in parsing resultsStopping a for loop for a python Pig Latin translator

Have I found a major security issue with login

Latin words remembered from high school 50 years ago

Why were early aviators' trousers flared at the thigh?

Why does string strummed with finger sound different from the one strummed with pick?

What is the word for interior with a circle

Warped chessboard

Was Tyrion always a poor strategist?

Is being an extrovert a necessary condition to be a manager?

Is it possible to view all the attribute data in QGIS

Is a reptile with diamond scales possible?

Addressing an email

What were the "pills" that were added to solid waste in Apollo 7?

Was murdering a slave illegal in American slavery, and if so, what punishments were given for it?

Why could the Lunar Ascent Engine be used only once?

What's is the easiest way to purchase a stock and hold it

Very serious stuff - Salesforce bug enabled "Modify All"

How to safely discharge oneself

How do we explain the use of a software on a math paper?

pwaS eht tirsf dna tasl setterl fo hace dorw

Is there a developer API for Agile Accelerator?

What is the backup for a glass cockpit, if a plane loses power to the displays/controls?

How to convince boss to spend notice period on documentation instead of new projects

Good examples of "two is easy, three is hard" in computational sciences

Can I have a delimited macro with a literal # in the parameter text?



Stopping a nested for loop fro Pig Latin translator


Speed up a for loop when checking variables in two long nested listsLooping through nested lists and keeping track of itPython writing nested loop to fileNested While Loop not working in pythonConvert a nested for loop that increments the integer value of dictionary pair into a list comprehensionWill a nest loop help in parsing resultsStopping a for loop for a python Pig Latin translator






.everyoneloves__top-leaderboard:empty,.everyoneloves__mid-leaderboard:empty,.everyoneloves__bot-mid-leaderboard:empty height:90px;width:728px;box-sizing:border-box;








0















The code is supposed to turn a seprate file into Pig Latin. The code does this at first but the nested for loop causes it to rearrange the words after it is successful. I do not know how to end this loop once the Pig Latin translation in complete.



I have tried to use break to end the for loop but this stops the code before it even finishes translating. I was also told by my teacher to move the print statements out of the for loop, but when I do this I get an indentation error.



def part2():
fin = open('Sonnet.txt')
fin.readline()
vowels = ['a', 'e', 'i','o','u']
for line in fin:
poem = line.split()
print(poem)
for word in range(len(poem)):
for i in range(len(vowels)):
if vowels[i] in poem[word][0]:
print(poem[word] + 'way')
else:
print(poem[word][i:]+poem[word][0:i] + 'ay')
print(poem)
part2()


The third word is the correct translation but the code scrambles the words back to its first form.



Thatay
hatTay
atThay
tThaay
Thatay









share|improve this question






















  • How do I fix this loop is the question?

    – dude
    Mar 23 at 19:23

















0















The code is supposed to turn a seprate file into Pig Latin. The code does this at first but the nested for loop causes it to rearrange the words after it is successful. I do not know how to end this loop once the Pig Latin translation in complete.



I have tried to use break to end the for loop but this stops the code before it even finishes translating. I was also told by my teacher to move the print statements out of the for loop, but when I do this I get an indentation error.



def part2():
fin = open('Sonnet.txt')
fin.readline()
vowels = ['a', 'e', 'i','o','u']
for line in fin:
poem = line.split()
print(poem)
for word in range(len(poem)):
for i in range(len(vowels)):
if vowels[i] in poem[word][0]:
print(poem[word] + 'way')
else:
print(poem[word][i:]+poem[word][0:i] + 'ay')
print(poem)
part2()


The third word is the correct translation but the code scrambles the words back to its first form.



Thatay
hatTay
atThay
tThaay
Thatay









share|improve this question






















  • How do I fix this loop is the question?

    – dude
    Mar 23 at 19:23













0












0








0








The code is supposed to turn a seprate file into Pig Latin. The code does this at first but the nested for loop causes it to rearrange the words after it is successful. I do not know how to end this loop once the Pig Latin translation in complete.



I have tried to use break to end the for loop but this stops the code before it even finishes translating. I was also told by my teacher to move the print statements out of the for loop, but when I do this I get an indentation error.



def part2():
fin = open('Sonnet.txt')
fin.readline()
vowels = ['a', 'e', 'i','o','u']
for line in fin:
poem = line.split()
print(poem)
for word in range(len(poem)):
for i in range(len(vowels)):
if vowels[i] in poem[word][0]:
print(poem[word] + 'way')
else:
print(poem[word][i:]+poem[word][0:i] + 'ay')
print(poem)
part2()


The third word is the correct translation but the code scrambles the words back to its first form.



Thatay
hatTay
atThay
tThaay
Thatay









share|improve this question














The code is supposed to turn a seprate file into Pig Latin. The code does this at first but the nested for loop causes it to rearrange the words after it is successful. I do not know how to end this loop once the Pig Latin translation in complete.



I have tried to use break to end the for loop but this stops the code before it even finishes translating. I was also told by my teacher to move the print statements out of the for loop, but when I do this I get an indentation error.



def part2():
fin = open('Sonnet.txt')
fin.readline()
vowels = ['a', 'e', 'i','o','u']
for line in fin:
poem = line.split()
print(poem)
for word in range(len(poem)):
for i in range(len(vowels)):
if vowels[i] in poem[word][0]:
print(poem[word] + 'way')
else:
print(poem[word][i:]+poem[word][0:i] + 'ay')
print(poem)
part2()


The third word is the correct translation but the code scrambles the words back to its first form.



Thatay
hatTay
atThay
tThaay
Thatay






python-3.6






share|improve this question













share|improve this question











share|improve this question




share|improve this question










asked Mar 23 at 18:31









dudedude

157




157












  • How do I fix this loop is the question?

    – dude
    Mar 23 at 19:23

















  • How do I fix this loop is the question?

    – dude
    Mar 23 at 19:23
















How do I fix this loop is the question?

– dude
Mar 23 at 19:23





How do I fix this loop is the question?

– dude
Mar 23 at 19:23












0






active

oldest

votes












Your Answer






StackExchange.ifUsing("editor", function ()
StackExchange.using("externalEditor", function ()
StackExchange.using("snippets", function ()
StackExchange.snippets.init();
);
);
, "code-snippets");

StackExchange.ready(function()
var channelOptions =
tags: "".split(" "),
id: "1"
;
initTagRenderer("".split(" "), "".split(" "), channelOptions);

StackExchange.using("externalEditor", function()
// Have to fire editor after snippets, if snippets enabled
if (StackExchange.settings.snippets.snippetsEnabled)
StackExchange.using("snippets", function()
createEditor();
);

else
createEditor();

);

function createEditor()
StackExchange.prepareEditor(
heartbeatType: 'answer',
autoActivateHeartbeat: false,
convertImagesToLinks: true,
noModals: true,
showLowRepImageUploadWarning: true,
reputationToPostImages: 10,
bindNavPrevention: true,
postfix: "",
imageUploader:
brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/3.0/"u003ecc by-sa 3.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
allowUrls: true
,
onDemand: true,
discardSelector: ".discard-answer"
,immediatelyShowMarkdownHelp:true
);



);













draft saved

draft discarded


















StackExchange.ready(
function ()
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f55317086%2fstopping-a-nested-for-loop-fro-pig-latin-translator%23new-answer', 'question_page');

);

Post as a guest















Required, but never shown

























0






active

oldest

votes








0






active

oldest

votes









active

oldest

votes






active

oldest

votes















draft saved

draft discarded
















































Thanks for contributing an answer to Stack Overflow!


  • Please be sure to answer the question. Provide details and share your research!

But avoid


  • Asking for help, clarification, or responding to other answers.

  • Making statements based on opinion; back them up with references or personal experience.

To learn more, see our tips on writing great answers.




draft saved


draft discarded














StackExchange.ready(
function ()
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f55317086%2fstopping-a-nested-for-loop-fro-pig-latin-translator%23new-answer', 'question_page');

);

Post as a guest















Required, but never shown





















































Required, but never shown














Required, but never shown












Required, but never shown







Required, but never shown

































Required, but never shown














Required, but never shown












Required, but never shown







Required, but never shown







Popular posts from this blog

Obelisk of Theodosius Contents History Description Notes Bibliography Further reading External links Navigation menuAge of spirituality : late antique and early Christian art, third to seventh centuryOver 60 picturesObelisks of the World41°00′21.24″N 28°58′31.43″E / 41.0059000°N 28.9753972°E / 41.0059000; 28.97539727724550-7235741376235741376

밀양 대씨 역사 각주 함께 보기 둘러보기 메뉴밀양 대씨

1973년 목차 사건 문화 탄생 사망 노벨상 달력 둘러보기 메뉴