w*s 发帖数: 7227 | 1 perl does this,
@array=(10..1),
how about python ? | d****i 发帖数: 4809 | 2 >>> a = range(10, 0, -1)
>>> print a
[10, 9, 8, 7, 6, 5, 4, 3, 2, 1]
【在 w*s 的大作中提到】 : perl does this, : @array=(10..1), : how about python ?
| W*****k 发帖数: 158 | 3 range(10, 0, -1)
【在 w*s 的大作中提到】 : perl does this, : @array=(10..1), : how about python ?
| x******a 发帖数: 6336 | | w*s 发帖数: 7227 | 5 哈哈,谢谢各位!
【在 d****i 的大作中提到】 : >>> a = range(10, 0, -1) : >>> print a : [10, 9, 8, 7, 6, 5, 4, 3, 2, 1]
|
|