Groups | Search | Server Info | Keyboard shortcuts | Login | Register [http] [https] [nntp] [nntps]


Groups > comp.lang.python > #75218

Re: What is the simplest method to get a vector result?

Path csiph.com!v102.xanadu-bbs.net!xanadu-bbs.net!feeder.erje.net!eu.feeder.erje.net!feeds.phibee-telecom.net!newsfeed.xs4all.nl!newsfeed1.news.xs4all.nl!xs4all!newsgate.cistron.nl!newsgate.news.xs4all.nl!post.news.xs4all.nl!not-for-mail
Return-Path <ian.g.kelly@gmail.com>
X-Original-To python-list@python.org
Delivered-To python-list@mail.python.org
X-Spam-Status OK 0.171
X-Spam-Level *
X-Spam-Evidence '*H*': 0.66; '*S*': 0.01; 'subject:method': 0.09; 'numpy': 0.16; 'wrote:': 0.18; 'import': 0.22; 'header:In-Reply- To:1': 0.27; 'message-id:@mail.gmail.com': 0.30; '25,': 0.31; 'fri,': 0.33; 'subject:the': 0.34; 'but': 0.35; 'received:google.com': 0.35; 'subject:?': 0.36; 'wrong': 0.37; 'to:addr:python-list': 0.38; 'pm,': 0.38; 'little': 0.38; 'to:addr:python.org': 0.39; 'more': 0.64; 'reply': 0.66; 'jul': 0.74; 'subject:get': 0.81
DKIM-Signature v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20120113; h=mime-version:in-reply-to:references:from:date:message-id:subject:to :content-type; bh=Z2UbIpbx5GqJAeAbnZnsQtrLu/PjjtjZ2jDWPdloKi8=; b=QBUcUUAXhR59SbIOyYd8msATv4XQYYG5ep4OEu9fjDJ1pQqLuR8gvE+t8l9zAOBcP7 kRVVvU7TUWga7TeMN2X/+lNBkg3FkpdniI/t1mNGsNLgiyz+lisJvKuJjs/cNg+9uZ5t FP9JQcUFE5mQaUw9+6715mKITIrs6E6Cf//gcGxgbB5fRuDCMxHsr4x48+sBDspkAvDX o1G7pv2pX53HtCUHOpSwHh4/dojMiPomD2cFr5nVC6EdXah2BSfKJ9FNuw+pJ8dZJzwX EuvL8RB2sLEl11XxhLqgLzbq+xEMM3+QXagRC2IEyV/qOAEJOq1IJmZ/KI/tglmLTdvy C42g==
X-Received by 10.66.227.170 with SMTP id sb10mr22543820pac.56.1406335074235; Fri, 25 Jul 2014 17:37:54 -0700 (PDT)
MIME-Version 1.0
In-Reply-To <037589dd-7f05-4a8d-a7a5-dcbb7cf2db12@googlegroups.com>
References <95524a09-7792-4cec-8c7e-7525a358ee8c@googlegroups.com> <mailman.12275.1406209762.18130.python-list@python.org> <037589dd-7f05-4a8d-a7a5-dcbb7cf2db12@googlegroups.com>
From Ian Kelly <ian.g.kelly@gmail.com>
Date Fri, 25 Jul 2014 18:37:14 -0600
Subject Re: What is the simplest method to get a vector result?
To Python <python-list@python.org>
Content-Type text/plain; charset=UTF-8
X-BeenThere python-list@python.org
X-Mailman-Version 2.1.15
Precedence list
List-Id General discussion list for the Python programming language <python-list.python.org>
List-Unsubscribe <https://mail.python.org/mailman/options/python-list>, <mailto:python-list-request@python.org?subject=unsubscribe>
List-Archive <http://mail.python.org/pipermail/python-list/>
List-Post <mailto:python-list@python.org>
List-Help <mailto:python-list-request@python.org?subject=help>
List-Subscribe <https://mail.python.org/mailman/listinfo/python-list>, <mailto:python-list-request@python.org?subject=subscribe>
Newsgroups comp.lang.python
Message-ID <mailman.12323.1406335083.18130.python-list@python.org> (permalink)
Lines 10
NNTP-Posting-Host 2001:888:2000:d::a6
X-Trace 1406335083 news.xs4all.nl 2902 [2001:888:2000:d::a6]:51092
X-Complaints-To abuse@xs4all.nl
Xref csiph.com comp.lang.python:75218

Show key headers only | View raw


On Fri, Jul 25, 2014 at 5:08 PM, fl <rxjwg98@gmail.com> wrote:
> I want to use your reply about numpy, but I find only the following works:
>
> import numpy as numpy
>
> Do you have other ways to import? (I find the above import a little more letters)

What's wrong with:

import numpy

Back to comp.lang.python | Previous | NextPrevious in thread | Next in thread | Find similar | Unroll thread


Thread

What is the simplest method to get a vector result? fl <rxjwg98@gmail.com> - 2014-07-24 05:53 -0700
  Re: What is the simplest method to get a vector result? Alan <alan.isaac@gmail.com> - 2014-07-24 06:10 -0700
  Re: What is the simplest method to get a vector result? Vlastimil Brom <vlastimil.brom@gmail.com> - 2014-07-24 15:49 +0200
    Re: What is the simplest method to get a vector result? fl <rxjwg98@gmail.com> - 2014-07-25 16:08 -0700
      Re: What is the simplest method to get a vector result? Ian Kelly <ian.g.kelly@gmail.com> - 2014-07-25 18:37 -0600
        Re: What is the simplest method to get a vector result? fl <rxjwg98@gmail.com> - 2014-07-25 19:17 -0700
  Re: What is the simplest method to get a vector result? Steven D'Aprano <steve+comp.lang.python@pearwood.info> - 2014-07-24 14:06 +0000
  Re: What is the simplest method to get a vector result? Marko Rauhamaa <marko@pacujo.net> - 2014-07-24 17:25 +0300
    Re: What is the simplest method to get a vector result? fl <rxjwg98@gmail.com> - 2014-07-24 18:29 -0700
      Re: What is the simplest method to get a vector result? Ian Kelly <ian.g.kelly@gmail.com> - 2014-07-24 19:50 -0600
      Re: What is the simplest method to get a vector result? Dave Angel <davea@davea.name> - 2014-07-24 22:44 -0400
        Re: What is the simplest method to get a vector result? Steven D'Aprano <steve+comp.lang.python@pearwood.info> - 2014-07-25 03:23 +0000

csiph-web