Welcome to OStack Knowledge Sharing Community for programmer and developer-Open, Learning and Share
Welcome To Ask or Share your Answers For Others

Categories

0 votes
678 views
in Technique[技术] by (71.8m points)

python - passing (new line) on stdout throught sys argument

This is elementary I guess:

Let's consider this snippet:

for i in range(3):
    sys.stdout.write(str(i) + '
')

out:

0
1
2

and this:

for i in range(3):
    sys.stdout.write(str(i) + sys.argv[1])

out (after passing as argument):

0
1
2

So, how can I pass new-line as argument?

See Question&Answers more detail:os

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome To Ask or Share your Answers For Others

1 Answer

0 votes
by (71.8m points)
sys.stdout.write(str(i) + sys.argv[1].decode("string_escape"))

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome to OStack Knowledge Sharing Community for programmer and developer-Open, Learning and Share
Click Here to Ask a Question

...