ShriRam Changed status to publish August 18, 2023
str=”The quick brown fox jumps over the lazy dog ”
n=3
word_len = []
txt = str.split(” “)
for x in txt:
if len(x) > n:
word_len.append(x)
print (word_len)
ShriRam Changed status to publish August 18, 2023