0
Can anyone tell me the python program for writing a name for example 'adore' in the way
a ad ado ador adore
6 Answers
+ 4
[print("adore" [0:i]) for i in range(len("adore"))]
maybe not completely correct
+ 2
Thanks oma.. The correction needed was [0:i+1]
+ 1
Oma Falk +1 for letting her think
+ 1
yep
+ 1
[print("adore" [0:i])
for i in range(len("adore"))]
+ 1
you can take help of this code!!!!!
https://code.sololearn.com/ccExacgOIMbl/?ref=app