A function named function1 is defined in a module named module1. Suppose function1 has no parameter. Which of the following Python program fragments will successfully call function1 from another module?A. import module1module1.function1()B. from module1 import function1function1()C. both (A) and (B)D. none of the above