Computer Science, asked by ANKIT0302, 11 months ago

which argument of print would set for (a) changing the default separator (b) printing the following line in current line.​

Answers

Answered by piku22743865
18

Hope it works

Answer:

Printing the following line

Explanation:

Because it will print on whole page

Answered by smartbrainz
26

The "argument of print" would set for (a) "changing the default separator" is 'SEP' and argument of print would set for (b) "printing the following line in the current line" is 'END'.

Explanation:

(a) The 'sep' parameter is used as an argument to modify the default separator.

By default, space is a "separator between the arguments" in print() function, that can be changed to any integer, character or string as to our choice using the 'sep' parameter.

(b) To print the following line in the current line, set the argument "end=” in the print() command. By default, the print() command inserts a new line at the end.

Similar questions