What will be the output of the following Python code?
import random
random.choice([10.4, 56.99, 76])
import random
random.choice([10.4, 56.99, 76])A. Error
B. Either 10.4, 56.99 or 76
C. Any number other than 10.4, 56.99 and 76
D. 56.99 only
Answer: Option B

Join The Discussion