top of page
Writer's pictureRajesh Singh

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




292 views1 comment

Recent Posts

See All

1 comentario


balramraypur1
16 mar 2021

one of the best python program for o level

Me gusta
bottom of page