1.

Write a Python program to display the given pattern?C O M P U T E RC O M P U T EC O M P U TC O M P UC O M PC O MC OC

Answer»

Program:

str1 = “COMPUTER”

index = len (str1)

for i in str 1:

print (str 1[: index])

index – = 1



Discussion

No Comment Found