Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 7218385
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 28, 20262026-05-28T21:28:30+00:00 2026-05-28T21:28:30+00:00

r = range(10) for j in range(maxj): # get ith number from r… i

  • 0
r = range(10) 

for j in range(maxj):
    # get ith number from r...       
    i = randint(1,m)
    n = r[i]
    # remove it from r...
    r[i:i+1] = []

The traceback I am getting a strange error:

r[i:i+1] = []
TypeError: 'range' object does not support item assignment

Not sure why it is throwing this exception, did they change something in Python 3.2?

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-05-28T21:28:31+00:00Added an answer on May 28, 2026 at 9:28 pm

    Good guess: they did change something. Range used to return a list, and now it returns an iterable range object, very much like the old xrange.

    >>> range(10)
    range(0, 10)
    

    You can get an individual element but not assign to it, because it’s not a list:

    >>> range(10)[5]
    5
    >>> r = range(10)
    >>> r[:3] = []
    Traceback (most recent call last):
      File "<pyshell#8>", line 1, in <module>
        r[:3] = []
    TypeError: 'range' object does not support item assignment
    

    You can simply call list on the range object to get what you’re used to:

    >>> list(range(10))
    [0, 1, 2, 3, 4, 5, 6, 7, 8, 9]
    >>> r = list(range(10))
    >>> r[:3] = [2,3,4]
    >>> r
    [2, 3, 4, 3, 4, 5, 6, 7, 8, 9]
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

If I have a Range object--for example, let's say it refers to cell A1
Given a date range how to calculate the number of weekends partially or wholly
First I use date range to get user input for start date and end
When changing the plot range of a histogram from Automatic to a plot range
Say I have a Range object for cells A1:A10 in my worksheet. These cells
How to pass range in hash to iterate from index 1 to last? h
So i have some range from 1 to 40, which i have to use
What is the range of possible characters returned from this string? function base64url_encode($data) {
Can I set a Range Object to be equal to a set of non-sequential
Expand a random range from 1–5 to 1–7 int i; do { i =

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.