C-17-Q146mediumsingle_mcq
Which is a correct way to build a vowel-set in Python (matching the chapter's spirit)?
Which is a correct way to build a vowel-set in Python (matching the chapter's spirit)?
- a
vowels = ['a', 'e', 'i', 'o', 'u', 'A', 'E', 'I', 'O', 'U'] - b
vowels = (a + e + i + o + u) - c
vowels = aeiou - d
vowels = "vowels"