What does print(… sep='', '\\t' ) mean?
I am having a bit of trouble trying to find an answer to this. I would like to know what the syntax sep="" and \t means. I have found some informaion about it but I didn't quite understand what the purpose of using the syntax was. I'm looking for an explanation of what it does and when / why you would use it. An example of sep='' being used: print('Property tax: $', format(tax, ',.2f'), sep='') sep='' in the context of a function call sets the named argument sep to an empty string. See the print() function ; sep is the separator used between multiple values when printing. The default is a