Functions Quiz NamePeriodWhich of the following does a Python function include in its header? Function Name Function Name & Parameter List Parameter List Return Value Which of the below keywords is used to begin a function in Python? fun define def function Select all statements which are True A function must return a value You do not have to pass parameters to a function If you do not have any code in a function, you can put in a docstring or pass statment. You can only call a function once. You have a to call a function to get it to run. All code in a function must be indented four spaces(a tab) over. def some_thing(number1, number2): first_value = number1 + 8 second_value = number2 - 5 return first_value print(some_thing(13, 10))What will the snippet of code above print? 5 21 18 None of the above def some_thing(number1, number2): first_value = number1 + 1 second_value = number2 - 2 temp_value = other_thing(second_value) return temp_value def other_thing(another_value): return another_value * 2 print(some_thing(2,3))What will the snippet of code above print? 3 6 9 None of the above Write a function that takes in two parameters - name and type of pet and display information about the pet. In the main, ask the user for their favorite (real or imagined) pet and it's name.In your main program, ask the user for their favorite number and how old they are. Pass those values to a function called lucky. If their lucky number, their age or the sum of both numbers equal 13 - return False Else return True. Have the main program tell them if they are lucky or not based on that value.