Supprimer les chaînes trop courtes d'une liste Python

list = ["wow", "it will not be remove"]

list = [item for item in list if len(item)>=7]

print(list)

#========   Output   ==================================================
["it will not be remove"]
TheUnknown