vowel list vowel = ['a', 'e', 'i', 'u'] # 'o' is inserted at index 3 # the position of 'o' will be 4th vowel.insert(3, 'o') print('Updated ...
確定! 回上一頁