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


Groups > comp.lang.python > #31112

Re: for-loop on cmd-line

Date 2012-10-11 08:16 -0400
From "D'Arcy J.M. Cain" <darcy@druid.net>
Subject Re: for-loop on cmd-line
References <E7295A9F2EFF4FD0A64C1225370AAC56@dev.null>
Newsgroups comp.lang.python
Message-ID <mailman.2046.1349958307.27098.python-list@python.org> (permalink)

Show all headers | View raw


On Thu, 11 Oct 2012 13:24:22 +0200
Gisle Vanem <gvanem@broadpark.no> wrote:

> Hello list. I'm a newbie when it comes to Python.
> 
> I'm trying to turn this:
> 
>  def print_sys_path():
>     i = 0
>     for p in sys.path:
>       print ('sys.path[%2d]: %s' % (i, p))
>       i += 1
> 
> into a one-line python command (in a .bat file):

Is "one liner" an actual requirement or is the requirement to run it
from the command line?

python -c "
import sys
i = 0
for p in sys.path:
  print('sys.path[%2d]: %s' % (i, p))
  i+=1
"

I don't know if this works on Windows or not.

-- 
D'Arcy J.M. Cain <darcy@druid.net>         |  Democracy is three wolves
http://www.druid.net/darcy/                |  and a sheep voting on
+1 416 425 1212     (DoD#0082)    (eNTP)   |  what's for dinner.
IM: darcy@Vex.Net

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


Thread

Re: for-loop on cmd-line "D'Arcy J.M. Cain" <darcy@druid.net> - 2012-10-11 08:16 -0400

csiph-web