words = ["Python", "fun"] index = 1 words.insert(index, "is") print(words) 结果: >>> ['Python', 'is', 'fun'] >>>
0