fork(1) download
  1. from scipy import stats
  2.  
  3. idades = [18,22,29,32,17,19]
  4. x = stats.mode(idades)
  5. print(x)
Success #stdin #stdout 0.44s 64580KB
stdin
Standard input is empty
stdout
ModeResult(mode=array([17]), count=array([1]))