#function to return name
def yourName():
return "Put Your Name" #return name
#this function returns value of m , 4 times
def quadster(m):
#return m times 4
return m*4
#function that checks age for movie
def isRratedMovieOK(age):
MINIMUMAGE=17 #declaring constant
#checking age
if age>=MINIMUMAGE:
#if age is greater than or equal to 17 then
return True
else :
return False #if age is less than 17
#main() function
def main():
#call yourName() function to print name
print("Name :",yourName())
#call function quadster() and print return value
print("quadster(7) : ",quadster(7))
#call function to check age
print("isRratedMovieOK(15) : ",isRratedMovieOK(15))
if __name__=="__main__":
main() #call main() function