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

Kamusi Yaliyomo Aina za kamusi | Muundo wa kamusi | Faida za kamusi | Dhima ya picha katika kamusi | Marejeo | Tazama pia | Viungo vya nje | UrambazajiKuhusu kamusiGo-SwahiliWiki-KamusiKamusi ya Kiswahili na Kiingerezakuihariri na kuongeza habari

SQL error code 1064 with creating Laravel foreign keysForeign key constraints: When to use ON UPDATE and ON DELETEDropping column with foreign key Laravel error: General error: 1025 Error on renameLaravel SQL Can't create tableLaravel Migration foreign key errorLaravel php artisan migrate:refresh giving a syntax errorSQLSTATE[42S01]: Base table or view already exists or Base table or view already exists: 1050 Tableerror in migrating laravel file to xampp serverSyntax error or access violation: 1064:syntax to use near 'unsigned not null, modelName varchar(191) not null, title varchar(191) not nLaravel cannot create new table field in mysqlLaravel 5.7:Last migration creates table but is not registered in the migration table

은진 송씨 목차 역사 본관 분파 인물 조선 왕실과의 인척 관계 집성촌 항렬자 인구 같이 보기 각주 둘러보기 메뉴은진 송씨세종실록 149권, 지리지 충청도 공주목 은진현