Computer Science, asked by tushant25, 1 year ago

criticas computer teacher has given her an assignment to display the names of the fruits separated with a tab space in Python which separator she should use with the print function​

Answers

Answered by ayushkumar1431
6

you can search in google

Answered by steffis
11

Names of the fruits are separated with a tab space in Python with \t separator.

Explanation:

The print() function is used to print the stated objects to the screen, or to another standard output device.  

The full syntax of print() is: print(*objects, sep= ‘ ‘, end = ‘\n’, file=file, flush=flush)

In print() function parameter 'sep' is used to separate the objects with the specified value. The default value of this is space. We use \t (tab space) to separate the objects with a tab space.

Similar questions