#! /usr/bin/python3 from math import sqrt table_size = 65536 line_spacing = 20 print("float sldjSqrtTable[%d] = {" % table_size) for c in range(table_size): print(f"{sqrt(c)},", end="") if c % line_spacing == 0: print() print("};")