如果可能的话,有关使循环成为向量函数的提示

时间:2016-11-02 22:14:49

标签: python

我想要做的是使用矢量化操作来加速我的代码,如果可以这样做的话。例如,切片阵列可能更快。这是我的代码片段:

Get-ChildItem -Path C:\PowershellTest\ | % {if($_.Name -match '.*\(.*\).*') {Rename-Item -Path $_.FullName -NewName $($_.Name -replace '\(.*\)', '')}}

有没有办法让它成为一个矢量函数。

0 个答案:

没有答案