Write a statement that prints the values of variables last, first, and middle in one line, separated by a horizontal tab character.
(The Python escape sequence for the horizontal tab character is \t.) If the variables are assigned like this:
>>> last = 'Smith'
>>> first = 'John'
>>> middle = 'Paul'
the output should be:
Smith John Paul
Answers
Answered by
0
Bro tab is not so small they are up 5 to 8 spaces long .So the output would be same only the number of spaces would be increased.
Similar questions