49

I was looking at some python 2.x code and attempted to translate it to py 3.x but I'm stuck on this section. Could anyone clarify what is wrong?

import random

emails = {
    "x": "[REDACTED]@hotmail.com",
    "x2": "[REDACTED]@hotmail.com",
    "x3": "[REDACTED]@hotmail.com"
}

people = emails.keys()

#generate a number for everyone
allocations = range(len(people))
random.shuffle(allocations)

This was the error given:

TypeError: 'range' object does not support item assignment
codeforester
  • 39,467
  • 16
  • 112
  • 140
user2840982
  • 525
  • 1
  • 4
  • 5

2 Answers2

107

In Python 3, range returns a lazy sequence object - it does not return a list. There is no way to rearrange elements in a range object, so it cannot be shuffled.

Convert it to a list before shuffling.

allocations = list(range(len(people)))
user2357112
  • 260,549
  • 28
  • 431
  • 505
Tim
  • 11,710
  • 4
  • 42
  • 43
0

if you can use numpy library you can replace range with np.arange:

import numpy as np
allocations = np.arange(len(people))
sigma1510
  • 1,165
  • 1
  • 11
  • 26
  • It's way overkill to import `numpy` for this, when it can be done natively just by using `list()`. – pfabri Feb 09 '21 at 11:21