Answer:
Explanation:
The solution code is written in Python 3.
Firstly, let an initial value 6 to variable n (Line 1).
Next, create a variable output to hold the resulting number string (Line 2).
Create a while loop and set the loop condition to enable the loop keep running so long as n bigger or equal to 1 (Line 3).
In the loop, concatenate the current n value with a single space " " and assign it to output (Line 4)
Next decrement the n number by one before proceeding to next round of loop (Line 5)
After completion of loop, print the output and we shall get 6 5 4 3 2 1