我正在寻找一个元素数组,并在函数中返回该数组的随机版本。

例如:

function Randomize-List
{
   Param(
     [int[]]$InputList
   )
   ...code...
   return 10,7,2,6,5,3,1,9,8,4
}

$a = 1..10
Write-Output (Randomize-List -InputList $a)
10
7
2
...

你明白了。不知道如何解决这个问题,我是Powershell的新手,来自Python背景。

最佳答案

您可以使用Get-Random在PowerShell中执行此操作。

function Randomize-List
{
   Param(
     [array]$InputList
   )

   return $InputList | Get-Random -Count $InputList.Count;
}

$a = 1..10
Write-Output (Randomize-List -InputList $a)

08-06 21:18