Computer Science, asked by vivekgupta2174, 2 months ago

write python program in following pattern
H
HE
HEL
HELL
HELLO​

Answers

Answered by MrMODS
1

b = "HELLO"

c = ""

for y in b:

c += y

print(c)

Similar questions