From mboxrd@z Thu Jan 1 00:00:00 1970 From: Arun Persaud Subject: Re: Insert a line separator in table results Date: Wed, 16 Jul 2014 15:37:50 -0700 Message-ID: <53C6FEBE.30207@lbl.gov> References: <53C6CD37.1030602@gmail.com> <87fvi1azej.fsf@gmail.com> <53C6F913.90307@gmail.com> Mime-Version: 1.0 Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: 7bit Return-path: Received: from eggs.gnu.org ([2001:4830:134:3::10]:43580) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1X7Xpu-0001n1-QF for emacs-orgmode@gnu.org; Wed, 16 Jul 2014 18:38:15 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1X7Xpj-0002E6-Fa for emacs-orgmode@gnu.org; Wed, 16 Jul 2014 18:38:06 -0400 Received: from fe2.lbl.gov ([128.3.41.134]:26774) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1X7Xpj-0002Ds-As for emacs-orgmode@gnu.org; Wed, 16 Jul 2014 18:37:55 -0400 Received: by mail-pd0-f169.google.com with SMTP id y10so1975478pdj.28 for ; Wed, 16 Jul 2014 15:37:52 -0700 (PDT) Received: from [128.3.5.177] (apersaud.dhcp.lbl.gov. [128.3.5.177]) by mx.google.com with ESMTPSA id wn7sm2371236pab.18.2014.07.16.15.37.51 for (version=TLSv1 cipher=ECDHE-RSA-RC4-SHA bits=128/128); Wed, 16 Jul 2014 15:37:52 -0700 (PDT) In-Reply-To: <53C6F913.90307@gmail.com> List-Id: "General discussions about Org-mode." List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: emacs-orgmode-bounces+geo-emacs-orgmode=m.gmane.org@gnu.org Sender: emacs-orgmode-bounces+geo-emacs-orgmode=m.gmane.org@gnu.org To: emacs-orgmode@gnu.org This works for me. #+BEGIN_SRC python x = [["label 1", "label 2", "label 3"]] x.append(None) x.append((4, 5, 6)) x.append((7, 8, 9)) return (x) #+END_SRC #+RESULTS: | label 1 | label 2 | label 3 | |---------+---------+---------| | 4 | 5 | 6 | | 7 | 8 | 9 | Arun