saving . . . saved loadtxt command not working has been deleted. loadtxt command not working has been hidden .
loadtxt command not working
Title
Question
loadtxt command not working

Python-3.4.3 Loading-Data-From-Files 02-03 min 0-10 sec 22-04-20, 3:50 a.m. nasiruddin@anjumanengg.edu.in

Answers:

got answer
file path was too long
i have reduced it 
and got command executed
In [47]: %pycat E:\primes.txt
2
3
5
7
11
13
17
19
23
29
31
37
41
43
47
53
59
61
67
71
73
79
83
89
97

In [48]: primes = loadtxt("E:\primes.txt")

In [49]: print(primes)
[ 2.  3.  5.  7. 11. 13. 17. 19. 23. 29. 31. 37. 41. 43. 47. 53. 59. 61.
 67. 71. 73. 79. 83. 89. 97.]
22-04-20, 3:52 a.m. nasiruddin@anjumanengg.edu.in


Log-in to answer to this question.