473,387 Members | 1,859 Online
Bytes | Software Development & Data Engineering Community
Post Job

Home Posts Topics Members FAQ

Join Bytes to post your question to a community of 473,387 software developers and data experts.

a question

L.S.,

I have a long command in Unix and I have to use os.system(cmd)
statement. I do the following:

cmd = '%s/mos user wmarch, cd /fa/wm/%s/%s, mkdir %s, put %s, chmod 644
%s' % (mosbin, jaar, filetype, filetype)
status = os.system(cmd)
This is not very clear, and I have to break this long line in two
segment by means of the next character '\' :
cmd = '%s/mos user wmarch, cd /fa/wm/%s/%s, mkdir %s, put %s, \
chmod 644 %s' % (mosbin, jaar, filetype, filetype)

But in this case I get a syntax error! I don't know how I can solve this
problem. Could somebody tell me about this?

With regards,
Nader
(this
Jul 18 '05 #1
8 1215
Nader Emami wrote:
L.S.,

I have a long command in Unix and I have to use os.system(cmd)
statement. I do the following:

cmd = '%s/mos user wmarch, cd /fa/wm/%s/%s, mkdir %s, put %s, chmod 644
%s' % (mosbin, jaar, filetype, filetype)
status = os.system(cmd)
This is not very clear, and I have to break this long line in two
segment by means of the next character '\' :
cmd = '%s/mos user wmarch, cd /fa/wm/%s/%s, mkdir %s, put %s, \
chmod 644 %s' % (mosbin, jaar, filetype, filetype)

But in this case I get a syntax error! I don't know how I can solve this
problem. Could somebody tell me about this?

The error you get is NOT a syntax error:
cmd = '%s format %s \ ... over %d lines' % ('my', 'string', 2) cmd 'my format string over 2 lines'


The interpreter is probably complaining because it needs six values to
fill out the format and you only provided four.

In future, by the way, always include the error message in such posts!

regards
Steve
--
Steve Holden http://www.holdenweb.com/
Python Web Programming http://pydish.holdenweb.com/
Holden Web LLC +1 703 861 4237 +1 800 494 3119
Jul 18 '05 #2
"Steve Holden" <st***@holdenweb.com> wrote in message
news:3YvHd.80953$Jk5.28602@lakeread01...
The error you get is NOT a syntax error:
>>> cmd = '%s format %s \ ... over %d lines' % ('my', 'string', 2) >>> cmd 'my format string over 2 lines' >>>


The interpreter is probably complaining because it needs six values to
fill out the format and you only provided four.


Also, I'm dubious about the idea of splitting a string literal across
multiple lines, as it's impossible to indent such a literal nicely without
putting stray spaces into its contents. So instead of writing

'this is a\
long string'

and not making it clear how many spaces you intend between 'a' and 'long',
how about writing this instead?

('this is a '
'long string')

in which the contents are not in doubt. This code takes advantage of two
properties of Python:

1) Multiple string literals with only whitespace between them are
automatically concatenated;

2) Ending a line inside unbalanced parentheses implicitly makes the next
line part of the same statement.
Jul 18 '05 #3

Andrew Koenig wrote:
how about writing this instead?

('this is a '
'long string')


Yes, nice. And to make that possible we have to write
('one-string-item',) instead of ('one-string-item') if we want a tuple
with one string inside. Sometimes that feels like a wart to me, but
now I know it, sometimes not.

Jul 18 '05 #4
Will Stuyvesant wrote:
Andrew Koenig wrote:
how about writing this instead?

('this is a '
'long string')

Yes, nice. And to make that possible we have to write
('one-string-item',) instead of ('one-string-item') if we want a tuple
with one string inside. Sometimes that feels like a wart to me, but
now I know it, sometimes not.

That has very little to do with tuples. You could just as easily write

'this is a '\
'long string'

It's the dangling comma that's required to specify a tuple:
1, (1,)


regards
Steve
--
Steve Holden http://www.holdenweb.com/
Python Web Programming http://pydish.holdenweb.com/
Holden Web LLC +1 703 861 4237 +1 800 494 3119
Jul 18 '05 #5
Nader,

You've got a couple problems. First, you need to end the string before
putting a continuation in. Secondly, you have 6 variables to be
substituted and only provide 4. Here's some code, edited to show how
to use continutations to join strings:
mosbin, jaar, filetype = (1,1,1)
cmd = '%s/mos user wmarch, cd /fa/wm/%s/%s, mkdir %s, put %s'\ .... '%s' % (mosbin, jaar, filetype, filetype, filetype, filetype) cmd
'1/mos user wmarch, cd /fa/wm/1/1, mkdir 1, put 1, chmod 6441'

Peace
Bill Mill
bill.mill at gmail.com

On Wed, 19 Jan 2005 16:16:32 +0000, Nader Emami <em***@knmi.nl> wrote: L.S.,

I have a long command in Unix and I have to use os.system(cmd)
statement. I do the following:

cmd = '%s/mos user wmarch, cd /fa/wm/%s/%s, mkdir %s, put %s, chmod 644
%s' % (mosbin, jaar, filetype, filetype)
status = os.system(cmd)

This is not very clear, and I have to break this long line in two
segment by means of the next character '\' :
cmd = '%s/mos user wmarch, cd /fa/wm/%s/%s, mkdir %s, put %s, \
chmod 644 %s' % (mosbin, jaar, filetype, filetype)

But in this case I get a syntax error! I don't know how I can solve this
problem. Could somebody tell me about this?

With regards,
Nader

(this
--
http://mail.python.org/mailman/listinfo/python-list

Jul 18 '05 #6
"Will Stuyvesant" <hw***@hotmail.com> wrote in message
news:11**********************@f14g2000cwb.googlegr oups.com...

Andrew Koenig wrote:
how about writing this instead?

('this is a '
'long string')


Yes, nice. And to make that possible we have to write
('one-string-item',) instead of ('one-string-item') if we want a tuple
with one string inside. Sometimes that feels like a wart to me, but
now I know it, sometimes not.

I don't think the goal was to have a tuple with a single string in it. The
poster said he was taking advantage of two features of Python:

"1) Multiple string literals with only whitespace between them are
automatically concatenated;

2) Ending a line inside unbalanced parentheses implicitly makes the next
line part of the same statement."

The parens are there just to avoid using the '\' continuation character.

-- Paul
Jul 18 '05 #7
Bill Mill wrote:
You've got a couple problems. First, you need to end the string before
putting a continuation in.

"no\ .... pe"
'nope'
"however\

File "<stdin>", line 1
"however\
^
SyntaxError: EOL while scanning single-quoted string

(in the second case, the ^ is trying to point out that I added
some whitespace after the backslash)

</F>

Jul 18 '05 #8
You are correct, sir. Didn't know you could do that. Neato.

Peace
Bill Mill
bill.mill at gmail.com

On Wed, 19 Jan 2005 22:10:05 +0100, Fredrik Lundh
<fr*****@pythonware.com> wrote:
Bill Mill wrote:
You've got a couple problems. First, you need to end the string before
putting a continuation in.

"no\ ... pe"
'nope'
"however\

File "<stdin>", line 1
"however\
^
SyntaxError: EOL while scanning single-quoted string

(in the second case, the ^ is trying to point out that I added
some whitespace after the backslash)

</F>

--
http://mail.python.org/mailman/listinfo/python-list

Jul 18 '05 #9

This thread has been closed and replies have been disabled. Please start a new discussion.

Similar topics

1
by: Mohammed Mazid | last post by:
Can anyone please help me on how to move to the next and previous question? Here is a snippet of my code: Private Sub cmdNext_Click() End Sub Private Sub cmdPrevious_Click() showrecord
3
by: Stevey | last post by:
I have the following XML file... <?xml version="1.0"?> <animals> <animal> <name>Tiger</name> <questions> <question index="0">true</question> <question index="1">true</question> </questions>
7
by: nospam | last post by:
Ok, 3rd or is it the 4th time I have asked this question on Partial Types, so, since it seems to me that Partial Types is still in the design or development stages at Microsoft, I am going to ask...
3
by: Ekqvist Marko | last post by:
Hi, I have one Access database table including questions and answers. Now I need to give answer id automatically to questionID column. But I don't know how it is best (fastest) to do? table...
10
by: glenn | last post by:
I am use to programming in php and the way session and post vars are past from fields on one page through to the post page automatically where I can get to their values easily to write to a...
10
by: Rider | last post by:
Hi, simple(?) question about asp.net configuration.. I've installed ASP.NET 2.0 QuickStart Sample successfully. But, When I'm first start application the follow message shown. ========= Server...
53
by: Jeff | last post by:
In the function below, can size ever be 0 (zero)? char *clc_strdup(const char * CLC_RESTRICT s) { size_t size; char *p; clc_assert_not_null(clc_strdup, s); size = strlen(s) + 1;
56
by: spibou | last post by:
In the statement "a *= expression" is expression assumed to be parenthesized ? For example if I write "a *= b+c" is this the same as "a = a * (b+c)" or "a = a * b+c" ?
2
by: Allan Ebdrup | last post by:
Hi, I'm trying to render a Matrix question in my ASP.Net 2.0 page, A matrix question is a question where you have several options that can all be rated according to several possible ratings (from...
3
by: Zhang Weiwu | last post by:
Hello! I wrote this: ..required-question p:after { content: "*"; } Corresponding HTML: <div class="required-question"><p>Question Text</p><input /></div> <div...
0
by: taylorcarr | last post by:
A Canon printer is a smart device known for being advanced, efficient, and reliable. It is designed for home, office, and hybrid workspace use and can also be used for a variety of purposes. However,...
0
by: Charles Arthur | last post by:
How do i turn on java script on a villaon, callus and itel keypad mobile phone
0
by: aa123db | last post by:
Variable and constants Use var or let for variables and const fror constants. Var foo ='bar'; Let foo ='bar';const baz ='bar'; Functions function $name$ ($parameters$) { } ...
0
by: ryjfgjl | last post by:
In our work, we often receive Excel tables with data in the same format. If we want to analyze these data, it can be difficult to analyze them because the data is spread across multiple Excel files...
0
by: emmanuelkatto | last post by:
Hi All, I am Emmanuel katto from Uganda. I want to ask what challenges you've faced while migrating a website to cloud. Please let me know. Thanks! Emmanuel
1
by: nemocccc | last post by:
hello, everyone, I want to develop a software for my android phone for daily needs, any suggestions?
0
marktang
by: marktang | last post by:
ONU (Optical Network Unit) is one of the key components for providing high-speed Internet services. Its primary function is to act as an endpoint device located at the user's premises. However,...
0
by: Hystou | last post by:
Most computers default to English, but sometimes we require a different language, especially when relocating. Forgot to request a specific language before your computer shipped? No problem! You can...
0
jinu1996
by: jinu1996 | last post by:
In today's digital age, having a compelling online presence is paramount for businesses aiming to thrive in a competitive landscape. At the heart of this digital strategy lies an intricately woven...

By using Bytes.com and it's services, you agree to our Privacy Policy and Terms of Use.

To disable or enable advertisements and analytics tracking please visit the manage ads & tracking page.