top of page

Python Function Program without input argument and without return value

  • Writer: Rajesh Singh
    Rajesh Singh
  • Feb 24, 2021
  • 1 min read

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 Comment


balramraypur1
Mar 16, 2021

one of the best python program for o level

Like
bottom of page