reading file to list
Xah Lee
xahlee at gmail.com
Sat Jan 17 12:55:43 EST 2009
On Jan 17, 9:34 am, Xah Lee <xah... at gmail.com> wrote:
> The code in my previous elisp code got a bump. It should be:
> ...
> • A Ruby Illustration of Lisp Problems
> http://xahlee.org/UnixResource_dir/writ/lisp_problems_by_ruby.html
Sorry again. More correction:
(defun read-lines (file)
"Return a list of lines in FILE."
(with-temp-buffer
(insert-file-contents file)
(split-string
(buffer-substring-no-properties 1 (point-max)) "\n" t)
)
)
(mapcar
(lambda (x)
(mapcar
(lambda (y) (string-to-number y) )
(split-string x " ")
)
)
(read-lines "xxblob.txt")
)
this is last post of correction.
Xah
∑ http://xahlee.org/
☄
More information about the Python-list
mailing list