while 1:
    text_file = open("write_it.txt", "w")
    word = input("Please add to a text file: ")

What else do I need to add to make my code run properly?

link|improve this question
3  
What does "properly" mean? – S.Lott Feb 10 '10 at 13:53
From the question and especially from the comments below by the OP, this looks like a homework question with no learning effort on the part of the OP. I guess this invites closing, unless someone feels otherwise. – sundar Feb 10 '10 at 14:02
you're probably right. – Dave Feb 10 '10 at 14:10
All of you: Stop bloody using "while 1". Python has had booleans for ages. – Lennart Regebro Feb 10 '10 at 14:36
3  
@Lennart Regebro: While true, perhaps they should read a tutorial before that. – S.Lott Feb 10 '10 at 14:41
show 1 more comment
feedback

2 Answers

up vote 2 down vote accepted

This should work:

text_file = open("write_it.txt", "w")
while 1:
    word = input("Please add to a text file: ")
    if not word:
        break
    text_file.write(word)
text_file.close()
link|improve this answer
feedback

Not sure, but that open statement inside of the while couldn't be affecting its behaviour? Have you tried just moving it out of while loop?

link|improve this answer
i mean i need to continue this code to make a program thats writes everything to the "write_it.txt – user270308 Feb 10 '10 at 13:50
i dont really understand, i tried to use "a" for open file and add somthing there but still its a blank txt file. please can you give me a full code of that programm – user270308 Feb 10 '10 at 14:46
IF you get Aaron's code and instead of: word = input("Please add to a text file: ") you use: word = raw_input("Please add to a text file: ") It should work – Jesus Benito Feb 10 '10 at 15:09
It doesnt work :S – user270308 Feb 10 '10 at 16:31
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.