当前位置:  开发笔记 > 编程语言 > 正文

将python代码移植到javascript

如何解决《将python代码移植到javascript》经验,为你挑选了1个好方法。

我对Python很新,但如果我正确理解代码,它会将给定偏移量的列表重建为偏移+ 1后面的每个项目和偏移量下的项目.

运行它似乎证实了这一点:

>>> indices = ['one','two','three','four','five','six']
>>> i = 2
>>> indices[i:] = indices[i+1:] + indices[i:i+1]
>>> indices
['one', 'two', 'four', 'five', 'six', 'three']

在Javascript中可以写:

indices = indices.concat( indices.splice( i, 1 ) );

相同的整个序列将会:

>>> var indices = ['one','two','three','four','five','six'];
>>> var i = 2;
>>> indices = indices.concat( indices.splice( i, 1 ) );
>>> indices
["one", "two", "four", "five", "six", "three"]

这是因为splice对数组具有破坏性,但返回已删除的元素,然后可以将其传递给concat.



1> Borgar..:

我对Python很新,但如果我正确理解代码,它会将给定偏移量的列表重建为偏移+ 1后面的每个项目和偏移量下的项目.

运行它似乎证实了这一点:

>>> indices = ['one','two','three','four','five','six']
>>> i = 2
>>> indices[i:] = indices[i+1:] + indices[i:i+1]
>>> indices
['one', 'two', 'four', 'five', 'six', 'three']

在Javascript中可以写:

indices = indices.concat( indices.splice( i, 1 ) );

相同的整个序列将会:

>>> var indices = ['one','two','three','four','five','six'];
>>> var i = 2;
>>> indices = indices.concat( indices.splice( i, 1 ) );
>>> indices
["one", "two", "four", "five", "six", "three"]

这是因为splice对数组具有破坏性,但返回已删除的元素,然后可以将其传递给concat.


这是一个虚构的命令行.我使用FireBug运行代码,但最后添加了>>>只是为了使它看起来与Python块相同.:-)
推荐阅读
ar_wen2402851455
这个屌丝很懒,什么也没留下!
DevBox开发工具箱 | 专业的在线开发工具网站    京公网安备 11010802040832号  |  京ICP备19059560号-6
Copyright © 1998 - 2020 DevBox.CN. All Rights Reserved devBox.cn 开发工具箱 版权所有