unpack attribute
What is the use of unpack attribute within the loadtxt() function? Why does it take a Boolean value?
Python-3.4.3 Loading-Data-From-Files 03-04 min 10-20 sec
Answers:
the loadtxt function reads a file and provides the data available in the file. If unpack is True, the returned array is transposed, so that arguments may be unpacked using x, y, z = loadtxt(...). When used with a structured data-type, arrays are returned for each field. Default is False.