You are on page 1of 1

Modules - Solution 1 - cat_talk

Note: Code copied from PDF files may have some spaces and blank lines removed. The original formatting
is preserved in the code files in the zip archive linked at the beginning of the course.

#!/usr/bin/env python3

import cat_say

def main():
cat_say.cat_say('Feed me.')
cat_say.cat_say('Pet me.')
cat_say.cat_say('Purr. Purr.')

if __name__ == '__main__':
main()

You might also like