From mboxrd@z Thu Jan 1 00:00:00 1970 From: Xavier Garrido Subject: Re: Insert a line separator in table results Date: Thu, 17 Jul 2014 08:28:29 +0200 Message-ID: <53C76D0D.8070707@gmail.com> References: <53C6CD37.1030602@gmail.com> <87fvi1azej.fsf@gmail.com> <53C6F913.90307@gmail.com> <53C6FEBE.30207@lbl.gov> Mime-Version: 1.0 Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 8bit Return-path: Received: from eggs.gnu.org ([2001:4830:134:3::10]:51919) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1X7fB9-0006mZ-UD for emacs-orgmode@gnu.org; Thu, 17 Jul 2014 02:28:40 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1X7fB0-0002kA-TK for emacs-orgmode@gnu.org; Thu, 17 Jul 2014 02:28:31 -0400 Received: from mail-wg0-x230.google.com ([2a00:1450:400c:c00::230]:48552) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1X7fB0-0002k6-MB for emacs-orgmode@gnu.org; Thu, 17 Jul 2014 02:28:22 -0400 Received: by mail-wg0-f48.google.com with SMTP id x13so1889464wgg.19 for ; Wed, 16 Jul 2014 23:28:21 -0700 (PDT) In-Reply-To: <53C6FEBE.30207@lbl.gov> 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: Arun Persaud , emacs-orgmode@gnu.org This also works for me. Thanks for your help, Xavier Le 17/07/2014 00:37, Arun Persaud a écrit : > 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 >