Multiple print() statements should be a multiline string
Closed this issue · 1 comments
lsrdg commented
There are several multiple print()
statements as in:
print("""
\nYou will be downloading this file directly
from https://tatoeba.org/eng/downloads.
""")
print('Keep in mind that this file is released under CC-BY.')
print("""
But if you would like more information about the file,
check the link above.
""")
print('You should also keep in mind that this file can be around 100mb.')
print('\nThe file will be downloaded and uncompressed.')
print('\n\nWould you like to proceed? (y/n)')
They should be handled as a single multiline string.