Answers for "Write a Python Function to print the following pattern"

0

string print in pattern in python

j="ramkumar"
for i in range(len(j)):
    for g in range(0,i+1):
        print(j[g],end=' ')
    print('')
# end='' meaning (print the next answer , near the previous answer in same line)
#answer 1 2 3 4 5 6 like this in same row or same line(in horizontal)



name="ramkumar"
for i in range(len(name)) :
    print(name[0:i+1])
Posted by: Guest on September-18-2021

Code answers related to "Write a Python Function to print the following pattern"

Python Answers by Framework

Browse Popular Code Answers by Language