I have a list with float values. I want to remove the the brackets from the list.
Floatlist = [14.715258933890,10.215953824,14.8171645397,10.2458542714719]
print (", ".join(Floatlist))
but i am getting an following error :
TypeError: sequence item 0: expected string, float found
but i want to print the list like:
output:14.715258933890,10.215953824,14.8171645397,10.2458542714719