我有一张单子。
我需要在单子上加一个词,但我不知道怎么加。
例如,
我有一个列表=['Alice', 'Amy', 'Andy', 'Betty', 'Eric', 'Peter', 'Richard', 'Tony']
最佳答案
。AA>的复杂性是~O(log n)。
from sortedcontainers import SortedList
lst = SortedList(['Alice', 'Amy', 'Andy', 'Betty', 'Eric', 'Peter', 'Richard', 'Tony'])
lst.add('Beatrice')
print(lst)
SortedList(['Alice', 'Amy', 'Andy', 'Beatrice', 'Betty', 'Eric', 'Peter', 'Richard', 'Tony'])
关于python - 如何在python列表中插入单词?,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/50827262/