I have a very long list of large numbers in Python in the form
[429996711.2753906, 106845465.30664062, 47285925.673828125, 373352395.4082031, 934463030.1191406, 53994183.962890625, 455503649.6542969, 741004174.1660156, 725379998.9648438, 485329924.8046875, 16476769.255859375,...]
for example. I need to convert each number from decimal to binary, and then save these binary numbers into a raw binary file without CRLF line-endings. Would anyone be able to say how to do this? I haven't been able to find a usable answer anywhere. Thanks!