Source code for AutomateTheBoringStuff.Ch06.P1_catnapping
"""Cat napping
This program prints a message for Alice using a multi-line
string with triple quotes.
"""
[docs]def main():
print('''Dear Alice,
Eve's cat has been arrested for catnapping, cat burglary, and extortion.
Sincerely,
Bob''')
if __name__ == '__main__':
main()