Python programming codes
43 subscribers
25 photos
1 video
83 files
82 links
Uploading All programming codes are updating Daily
ask doubts in comment box đŸŽâ˜‘ī¸
Download Telegram
#above 4 letters in each word conatin
dataset = "hello everyone iam sai krishna iam studying btech from tadipatri"

data = dataset.split(" ")

print(data)

result = []
for word in data:
if len(word) > 4 :
result.append(word)
print(result)