Write a Python module, called my_definitions.py that includes the following A function called greeting that prints a fri
Posted: Sun Jul 03, 2022 12:00 pm
Write a Python module, called my_definitions.py
that includes the following
A function called greeting that prints a friendly greeting
A function called message that prints your name as the author ofthe code
A function called print_dict that takes a dictionary as anargument and prints the pairs (key, value) one per line
A function called print_set that takes a set as an argument andprints the set one item per line
Write a file that uses your module.
that includes the following
A function called greeting that prints a friendly greeting
A function called message that prints your name as the author ofthe code
A function called print_dict that takes a dictionary as anargument and prints the pairs (key, value) one per line
A function called print_set that takes a set as an argument andprints the set one item per line
Write a file that uses your module.