Google Groups no longer supports new Usenet posts or subscriptions. Historical content remains viewable.
Dismiss

for-loop on cmd-line

100 views
Skip to first unread message

Gisle Vanem

unread,
Oct 11, 2012, 7:24:22 AM10/11/12
to Python-list
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):

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

But:
File "<string>", line 1
import sys,os; i=0; for p in sys.path: print('sys.path[%2d]: %s' % (i, p)); i+=1
^
SyntaxError: invalid syntax

The caret is on the 'for'. What's the problem?

--gv

suzaku

unread,
Oct 11, 2012, 7:50:57 AM10/11/12
to Python-list
According to the document (http://docs.python.org/using/cmdline.html#interface-options),
> When called with -c command, it executes the Python statement(s) given as command. Here command may contain multiple statements separated by newlines. Leading whitespace is significant in Python statements!

So you should replace the semicolon with newline.

BTW, the loop can be simplified using `enumerate` like this:

for i, p in enumerate(sys.path):
Message has been deleted

Dave Angel

unread,
Oct 11, 2012, 7:54:33 AM10/11/12
to Gisle Vanem, Python-list
On 10/11/2012 07:24 AM, Gisle Vanem 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):
>
> python -c "import sys,os; i=0; for p in sys.path:
> print('sys.path[%%2d]: %%s' %% (i, p)); i+=1"
>
> But:
> File "<string>", line 1
> import sys,os; i=0; for p in sys.path: print('sys.path[%2d]: %s' %
> (i, p)); i+=1
> ^
> SyntaxError: invalid syntax
>
> The caret is on the 'for'. What's the problem?

>
> --gv

it has nothing to do with being on a command line. You're using
semicolon to combine several statements, and there are restrictions on
what can be combined that way. One restriction is the looping
constructs, for, if, while.

Try experimenting with a standard program, to see what can be combined
and what cannot.

You can do it easily enough with a list comprehension. Let us know if
you can't work that out.

By the way, much cleaner than defining your own counting variable is to
use enumerate().

Any reason why you don't just make a one-file python script, and run
that instead of your one line batch file? Or is this line one of many
in the batch file?

--

DaveA


D'Arcy J.M. Cain

unread,
Oct 11, 2012, 8:16:07 AM10/11/12
to Gisle Vanem, Python-list
On Thu, 11 Oct 2012 13:24:22 +0200
Gisle Vanem <gva...@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 <da...@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: da...@Vex.Net

Chris Angelico

unread,
Oct 11, 2012, 9:14:11 AM10/11/12
to pytho...@python.org
On Thu, Oct 11, 2012 at 11:16 PM, D'Arcy J.M. Cain <da...@druid.net> wrote:
> On Thu, 11 Oct 2012 13:24:22 +0200
> Gisle Vanem <gva...@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.

It doesn't, I just tested it. Windows batch is appallingly crude
compared to a modern Unix shell; you may be able to find a way to get
around this, but the easiest solution for most batch files is going to
be an actual Python script file. You may be able to overlay your batch
and Python scripts with a trick like this:

rem = '''
@echo off
echo This is batch
\python32\python %0
echo All done
exit /b
rem '''
import sys
print("This is Python")
for i,p in enumerate(sys.path):
print('sys.path[%2d]: %s' % (i, p))
print("Python done")

You'll have a variable in Python called 'rem' which contains all your
batch code :) It exploits the fact that 'rem' makes a one-line
comment, but the triple quotes go across multiple lines. (The "exit
/b" should exit the batch script without closing cmd.exe - this is yet
another weird WEIRD wart in Windows batch. I'm pretty sure neither DOS
nor OS/2 batch required that parameter.)

ChrisA

Ramchandra Apte

unread,
Oct 11, 2012, 9:16:25 AM10/11/12
to pytho...@python.org
What about the "Power" in PowerShell?

Ramchandra Apte

unread,
Oct 11, 2012, 9:16:25 AM10/11/12
to comp.lan...@googlegroups.com, pytho...@python.org
On Thursday, 11 October 2012 18:44:44 UTC+5:30, Chris Angelico wrote:

Chris Angelico

unread,
Oct 11, 2012, 9:20:23 AM10/11/12
to pytho...@python.org
On Fri, Oct 12, 2012 at 12:16 AM, Ramchandra Apte
<manian...@gmail.com> wrote:
> What about the "Power" in PowerShell?

What about it? Are you suggesting that the OP use it? Are you saying
that Windows batch already includes it? You quoted my entire post
(double-spaced), but that context adds nothing to your statement; it
still stands alone as a complete non sequitur.

And you're posting to both c.l.p and p-l...

ChrisA

Gisle Vanem

unread,
Oct 11, 2012, 9:40:57 AM10/11/12
to Python-list
"Dave Angel" <d...@davea.name> wrote:

> it has nothing to do with being on a command line. You're using
> semicolon to combine several statements, and there are restrictions on
> what can be combined that way. One restriction is the looping
> constructs, for, if, while.

Ok, I suspected something like that.

> You can do it easily enough with a list comprehension. Let us know if
> you can't work that out.

Later. I'm only scratching the surface of Python.

> Any reason why you don't just make a one-file python script, and run
> that instead of your one line batch file?

I though of calling that python line from a C-program using
popen() and parsing the output. Since popen() on Win32 AFAIK doesn't accept
multiple lines, I guess I must write a .py-file to %TEMP first.

Thank to all.

--gv

wxjm...@gmail.com

unread,
Oct 11, 2012, 12:24:10 PM10/11/12
to pytho...@python.org
Le jeudi 11 octobre 2012 15:16:33 UTC+2, Ramchandra Apte a écrit :

PS C:\> $cmd="import sys;"
PS C:\> $cmd+="print('\n'.join(sys.path))"
PS C:\> $cmd
import sys;print('\n'.join(sys.path))
PS C:\> c:\python32\python -c $cmd

C:\Windows\system32\python32.zip
c:\python32\DLLs
c:\python32\lib
c:\python32
c:\python32\lib\site-packages
PS C:\>

Can probably be in a .cmd file.

jmf

wxjm...@gmail.com

unread,
Oct 11, 2012, 12:24:10 PM10/11/12
to comp.lan...@googlegroups.com, pytho...@python.org

Chris Angelico

unread,
Oct 11, 2012, 12:32:43 PM10/11/12
to pytho...@python.org
That doesn't actually make a multi-line argument though. It just
dodges the issue by avoiding the for loop :)

ChrisA

Gisle Vanem

unread,
Oct 11, 2012, 12:49:27 PM10/11/12
to Python-list
<wxjm...@gmail.com> wrote in comp.lang.python

(my ISP no longer updates this group. Last message is from 8. April.
Does the postings to the python mailing-list automatically get reposted
to comp.lang.python?)

> C:\Windows\system32\python32.zip
> c:\python32\DLLs

I see a similar result:
f:\Windows\system32\python27.zip

Where is it determined that python27.zip should be in sys.path?
I have no such file anywhere. I'm using ActivePython 2.7.2.

--gv

Chris Angelico

unread,
Oct 11, 2012, 12:58:45 PM10/11/12
to pytho...@python.org
On Fri, Oct 12, 2012 at 3:49 AM, Gisle Vanem <gva...@broadpark.no> wrote:
> <wxjm...@gmail.com> wrote in comp.lang.python
>
> (my ISP no longer updates this group. Last message is from 8. April.
> Does the postings to the python mailing-list automatically get reposted to
> comp.lang.python?)

Yes, c.l.p and python-list mirror each other.

>> C:\Windows\system32\python32.zip
>> c:\python32\DLLs
>
>
> I see a similar result:
> f:\Windows\system32\python27.zip
>
> Where is it determined that python27.zip should be in sys.path?
> I have no such file anywhere. I'm using ActivePython 2.7.2.

It's in sys.path in the three Windows Pythons I have here:

C:\Documents and Settings\M>python -c "import sys; print(sys.version); print('\n
'.join(sys.path))"
2.4.5 (#1, Jul 22 2011, 02:01:04)
[GCC 4.1.1]

C:\Program Files\LilyPond\usr\lib\python24.zip
C:\Program Files\LilyPond\usr\lib\python2.4
C:\Program Files\LilyPond\usr\lib\python2.4\plat-mingw32
C:\Program Files\LilyPond\usr\lib\python2.4\lib-tk
C:\Program Files\LilyPond\usr\lib\python2.4\lib-dynload
C:\Program Files\LilyPond\usr\lib\python2.4\site-packages

C:\Documents and Settings\M>\python26\python -c "import sys; print(sys.version);
print('\n'.join(sys.path))"
2.6.5 (r265:79096, Mar 19 2010, 21:48:26) [MSC v.1500 32 bit (Intel)]

C:\WINDOWS\system32\python26.zip
C:\python26\DLLs
C:\python26\lib
C:\python26\lib\plat-win
C:\python26\lib\lib-tk
C:\python26
C:\python26\lib\site-packages

C:\Documents and Settings\M>\python32\python -c "import sys; print(sys.version);
print('\n'.join(sys.path))"
3.2 (r32:88445, Feb 20 2011, 21:29:02) [MSC v.1500 32 bit (Intel)]

C:\WINDOWS\system32\python32.zip
C:\python32\DLLs
C:\python32\lib
C:\python32
C:\python32\lib\site-packages
C:\python32\lib\site-packages\win32
C:\python32\lib\site-packages\win32\lib
C:\python32\lib\site-packages\Pythonwin

C:\Documents and Settings\M>

Presumably it's so that I can zip up my entire Python library and toss
it into a convenient file. I don't think it costs much to stat a file
and find it's not there before moving on, so it's not a problem to
leave it there.

ChrisA

Prasad, Ramit

unread,
Oct 11, 2012, 4:12:06 PM10/11/12
to pytho...@python.org
Chris Angelico wrote:
> On Fri, Oct 12, 2012 at 3:49 AM, Gisle Vanem <gva...@broadpark.no> wrote:
> > <wxjm...@gmail.com> wrote in comp.lang.python
> >
> > (my ISP no longer updates this group. Last message is from 8. April.
> > Does the postings to the python mailing-list automatically get reposted to
> > comp.lang.python?)
>
> Yes, c.l.p and python-list mirror each other.
>
> >> C:\Windows\system32\python32.zip
> >> c:\python32\DLLs
> >
> >
Interesting, my results are slightly different. Here is what I
get from (one of) my Python installs.

2.7.1 (r271:86832, Nov 27 2010, 18:30:46) [MSC v.1500 32 bit (Intel)]
C:\ramit\Python27\python27.zip
C:\ramit\Python27\DLLs
C:\ramit\Python27\lib
C:\ramit\Python27\lib\plat-win
C:\ramit\Python27\lib\lib-tk
C:\ramit\Python27
C:\ramit\Python27\lib\site-packages

Ramit

This email is confidential and subject to important disclaimers and
conditions including on offers for the purchase or sale of
securities, accuracy and completeness of information, viruses,
confidentiality, legal privilege, and legal entity disclaimers,
available at http://www.jpmorgan.com/pages/disclosures/email.

Dave Angel

unread,
Oct 11, 2012, 4:40:55 PM10/11/12
to Gisle Vanem, Python-list
Why would you write some C-program just to save having two separate
files, one batch and one for the script? For that matter, several
answers have given you approaches that didn't involve list
comprehensions, including merging the two in a single file, using an
initial variable of rem="""

What are your real constraints? Are you just playing code-golf?



--

DaveA

Gisle Vanem

unread,
Oct 11, 2012, 5:00:09 PM10/11/12
to Python-list
"Dave Angel" <d...@davea.name> wrote:

> Why would you write some C-program just to save having two separate
> files, one batch and one for the script? For that matter, several
> answers have given you approaches that didn't involve list
> comprehensions, including merging the two in a single file, using an
> initial variable of rem="""

Like I wrote; use popen() or system() from a C-program (an env-var
checker) that's not really related to Python programming. But rather to
check various stuff needed for C-programming . Like walking the list
of %INCLUDE / %C_INCLUDE_PATH dirs to figure out what headers are
where. So I'd just as well add an option to check for Python paths too
(if Python is installed that is).

> What are your real constraints? Are you just playing code-golf?

That too.

--gv
0 new messages