- A A random element from the list x
- B The shuffled list x with the elements mixed up
- C A random element from the list x, excluding 3 and 0
- D A random element from the list elements 3 and 0
Python Programming Language MCQ Python Built-in Functions MCQ
⚠ Report ✓ Question Verified Copy Link
import random x = [3, 8, 6, 5, 0] random.shuffle(x) print(x)
Learn More MCQ Questions from Python Programming Language MCQ Python Built-in Functions MCQ