Kritika's 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
11
She should use the "\t" separator.
Example:
fruits = ["mangoes", "strawberries", "grapes"]
print(*fruits, sep = "\t")
Similar questions