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)