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 1035927
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 16, 20262026-05-16T14:37:11+00:00 2026-05-16T14:37:11+00:00

How to replace a set of characters inside another string in Python? Here is

  • 0

How to replace a set of characters inside another string in Python?

Here is what I’m trying to do: let’s say I have a string ‘abcdefghijkl’ and want to replace the 2-d from the end symbol (k) with A. I’m getting an error:

>>> aa = 'abcdefghijkl'
>>> print aa[-2]
k
>>> aa[-2]='A'

Traceback (most recent call last):
  File "<pyshell#2>", line 1, in <module>
    aa[-2]='A'
TypeError: 'str' object does not support item assignment

So, the question: is there an elegant way to replace (substitute) with a string symbols inside another string starting from specified position? Something like:

# subst(whole_string,symbols_to_substiture_with,starting_position)

>>> print aa
abcdefghijkl
>>> aa = subst(aa,'A',-2)
>>> print aa
abcdefghijAl

What would be a not-brute-force code for the subst?

  • 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-16T14:37:12+00:00Added an answer on May 16, 2026 at 2:37 pm

    If it’s always the same position you’re replacing, you could do something like:

    >>> s = s[0:-2] + "A" + s[-1:]
    >>> print s
    abcdefghijAl
    

    In the general case, you could do:

    >>> rindex = -2 #Second to the last letter
    >>> s = s[0:rindex] + "A" + s[rindex+1:]
    >>> print s
    abcdefghijAl
    

    Edit: The very general case, if you just want to repeat a single letter in the replacement:

    >>> s = "abcdefghijkl"
    >>> repl_str = "A"
    >>> rindex = -4 #Start at 4th character from the end
    >>> repl = 3 #Replace 3 characters
    >>> s = s[0:rindex] + (repl_str * repl) + s[rindex+repl:]
    >>> print s
    abcdefghAAAl
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I like to replace a certain set of characters of a string with a
In Notepad++ I have set replace tab with 2 spaces. When coding in Python
I am trying to validate a string based on the inputed characters. I want
I am attempting to replace some undesirable characters in a string retrieved from an
I have a large (600 odd) set of search and replace terms that I
I want to replace some headers by images, so I would have nice font.For
Just wondering if it is possible in Mysql to move characters inside a string
I need to RTRIM the last 7 characters from a result set in an
Is it possible in MySQL to insert a string three characters from the beginning
I have a string column (Col1) in table (Tab1). I want to write a

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.