Python - Modules and Code Organization
Given a file
What will be the output of this code?
greetings.py with this code:def say_hello():
return 'Hello!'What will be the output of this code?
import greetings print(greetings.say_hello())
