please solve this ..........
Attachments:
Answers
Answered by
1
Python program
word = "COMPUTER"
for i, v in enumerate(word):
print(word[0: len(word) - i])
Similar questions