def GM(N):
for i in range(N):
print("Good Morning!!")
GM(5) # this line of code is going to print Good Morning
# Five time in terminal
# Here there is no return statement
# This function or module is accepting a integer num where there
# is for loop running that number of time to
# print Good Morning N number of times
# this functions are called Void Functions