Consider the following Python code, which makes up a partial…

Consider the following Python code, which makes up a partially completed block of code. We wish to complete the code so that it displays the following output: how now brown cow     one = “how” two = “now” three = “brown” four = “cow” # more code goes here b = [b] c = [c] a = [a] d = [d]   # more code goes here print(b, end=” “) print(d, end=” “) print(a, end=” “) print(c)

In your own words, describe what this Python program will di…

In your own words, describe what this Python program will display, as it relates to the input provided by the user: Assume that the user will properly enter a three digit number when prompted. A fully correct answer is a succinct description of the outcome displayed in relation to the input. A partially correct answer is a step-by-step description of each line. Hint: consider what each printed value represents about the original number, and the order they are printed in