My code in python is
file.write("Name\t Age\t M/F\t")
file.write("Mo\t 15\t M\t")
yet it comes out
Name Age M/F
Mo 15 M
The columns are not in line as in they are all not in the same column. Is there a command to sort it out so it saves and prints in one column and line?