문제

For curiosity's sake...

In Ruby:

=>$ irb
1.8.7 :001 > puts x = 2
2
 => nil 
1.8.7 :002 > puts x += 2 while x < 40
4
6
8
10
12
14
16
18
20
22
24
26
28
30
32
34
36
38
40

It's quite handy.

Is it possible to do that in Python in a single line and if yes how?

도움이 되었습니까?

해결책

The reason why you can not do exactly or very similarly the same in Python is because in Ruby, everything is expression.

Python distincts between statements and expressions and only expressions can be evaluated (therefore printed, I mean passed to print operator/function).

So such code cannot be done in Python in that form you showed us. Everything you can do is to find some "similar" way to write down statement above as a Python expression but it will definitely not be that "Rubyous".

IMHO, in Python, impossibility of such behaviour (as described in this use case), nicely follows "explicit is better than implicit" Zen of Python rule.

다른 팁

a one-liner to produce the same result:

for x in xrange(4,42,2): print x

gives:

4
6
8
10
12
14
16
18
20
22
24
26
28
30
32
34
36
38
40

xrange is a built in function that returns an “xrange object”, which yields the next item without storing them all (like range does), this is very similar to OP's while loop.

This is not possible in python; you can't use a statement (x += 2) as an expression to be printed.

With the remarks about assigment not being expressions in Python on the other answers kept, one can do this in Python:

from __future__ import print_function

[print(x) for x in range(0,42,2)]
라이센스 : CC-BY-SA ~와 함께 속성
제휴하지 않습니다 StackOverflow
scroll top