Thursday, August 22, 2019

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

hard drive - Leaving bad sectors in unformatted partition?

Laptop was acting really weird, and copy and seek times were really slow, so I decided to scan the hard drive surface. I have a couple hundr...