I'm assuming you are trying to produce formatted text output in which case maybe this code will help you
list1=[0.0020361512, 0.000825494, 0.002264453, 0.0020216484, 0.0008741686, 0.0018512862]
# format floats into strings
# miniformat language - https://docs.python.org/3/library/string.html#format-specification-mini-language
# {:8.6f} => float with width of 8 and 6 decimal places
# {:.12f} => float with 12 decimal places
# for more complicated versions - check the python docs
decs = ['{:.12f}'.format(dec) for dec in list1]
# add a newline to each string and join together into a single text outpu
output = "\n".join(decs)
# print
print(output)
# or write to a file
with open("C:/Temp/output.txt", "w", encoding="utf8") as fpt:
fpt.write(output)
this produces output like
0.002036151200
0.000825494000
0.002264453000
0.002021648400
0.000874168600
0.001851286200