Computer Science, asked by garimamohindhru1056, 1 month ago

qbasic program to display the pattern SCHOOLS, CHOOL, HOO, O.

Answers

Answered by alienfighter0000
0

Answer:

#Please make me brainliest.

Explanation:    

word = str(input("Enter the word: "))

while len(word) !=  0:

   print(word)

   word = word[1:][:-1]  

 

Similar questions