Python Custom Functions Exercises

Define a function that prints Hello Python! on the console. ” print_hello_python(): print(“Hello Python!”) Submit Call the function. def print_hello_python(): print(“Hello Python!”) ” ( print_hello_python ) : Submit Modify the function that accepts a string and prints it on the console. def print_string(”): print(input_string) print_string(“Hello Python!”) Submit This function takes a number and doubles it. … Continue reading Python Custom Functions Exercises