saving . . . saved unpack attribute has been deleted. unpack attribute has been hidden .
unpack attribute
Title
Question
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 09-07-20, 6:52 p.m. Mitalidas

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.
14-07-20, 9:05 a.m. ankitrj.iitb


Log-in to answer to this question.