Sunday, February 11, 2018

python - Printing Loop into a Text file




I want to be able to print this in to a text file, however I have looked around and can't figure out what I need to do.



def countdown (n):

while (n > 1):
print('\n',(n), 'Bottles of beer on the wall,', (n), 'bottles of beer, take one down pass it around', (n)-1, 'bottles of beer on the wall.')
n -= 1
if (n == 2):
print('\n',(n), 'Bottles of beer on the wall,', (n), 'bottles of beer, take one down pass it around', (n)-1, 'bottle of beer on the wall.')
else:
print ('\n',(n), 'Bottle of beer on the wall,', (n), 'bottle of beer, take one down pass it around no more bottles of beer on the wall.')

countdown (10)


Answer



Instead of...



...
print('123', '456')


Use...



myFile = open('123.txt', 'w')

...
print('123', '456', file = myFile)
...
myFile.close() # Remember this out!


Or even...



with open('123.txt', 'w') as myFile:
print('123', '456', file = myFile)


# With `with`, you don't have to close the file manually, yay!


I hope this has led some light on you!


No comments:

Post a Comment

plot explanation - Why did Peaches' mom hang on the tree? - Movies & TV

In the middle of the movie Ice Age: Continental Drift Peaches' mom asked Peaches to go to sleep. Then, she hung on the tree. This parti...