Проблема в моем коде, когда он расширяет список, но не так, как я хочу
#python #arrays #function Вопрос: import os import time os.system('clear') null = ['strawberry', 'oranges', 'bananas', 'mangoes', 'grapes', 'apples'] def add(ml, KWS): ml = int(ml) KWS = str(KWS) null.insert(int(ml), str(KWS)) def sub(uy):…