Q. Which of the following will print the pi value defined in math module? (A) from math import pi print(math.pi) (B) from math import pi print(pi) (C) print(math.pi) (D) print(pi) ποΈ Show Answer π¬ Discuss π Share β‘Menu β Correct Answer: (B) from math import pi print(pi)