top of page

Python Function Program without input argument and without return value

Writer's picture: Rajesh SinghRajesh Singh

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()




295 views1 comment

Recent Posts

See All

1 Comment


balramraypur1
Mar 16, 2021

one of the best python program for o level

Like
bottom of page