What is the output of the function shown below (random module has already been imported)? random.choice(‘sun’) A. sun B. u C. either s, u or n D. error Answer Workspace Report Discuss Answer with explanation Answer: Option C Explanation The above function works with alphabets just as it does with numbers. The output of these expressions will be either s, u, and n. Workspace
Discuss about the question