How to import a single function from a Python module?
Answers
Answered by
0
It's simple.
from 'module name' import 'function name'
Note:- Don't put parenthesis.
Answered by
2
Answer:
Import the module named mymodule, and call the greeting function
Similar questions