Function Creation with Default Parameter Write a Python fun…

 Function Creation with Default Parameter Write a Python function named greet that accepts three parameters: first_name, last_name, and greeting (which should have a default value of “Hello”). The function should print a greeting message combining these parameters.

if/elif/else Structure Construct a Python code snippet using…

if/elif/else Structure Construct a Python code snippet using an if/elif/else structure to categorize a variable score into three categories: if the score is above 80, print “High”; if the score is between 50 and 80 (inclusive), print “Medium”; and if the score is below 50, print “Low”.