top of page

Python Function Program without input argument and without return value


This type of function does not have input arguments but has a value to the main program.

Write a program to generate the following pattern.

1

1 2

1 2 3

1 2 3 4

1 2 3 4 5

Program:

def pattern():

for i in range(1,6):

for column in range(1, i+1):

print(column, end=' ')

print("")

return

pattern()



Write a program to generate the following pattern.

1

1 2

1 2 3

1 2 3 4

1 2 3 4 5

Program:

def pattern():

for i in range(1,6):

for j in range(i,6):

print(j, end=' ')

print("")

return

pattern()




Recent Posts

See All

댓글 1개


balramraypur1
2021년 3월 16일

one of the best python program for o level

좋아요
bottom of page