file_writer.writerow([name, subscribers, type, price])
file_writer.writerows(zip(name, subscribers, type, price))
a b b a b a a ....
A b b a b a a ....
a B b a b a a ....
a B a b a a ....
a b A b a a ....
quoting: optional constant from csv module
Defaults to csv.QUOTE_MINIMAL. If you have set a float_format then floats are converted to strings and thus csv.QUOTE_NONNUMERIC will treat them as non-numeric.