Delete a character from pythons string

0 votes
How do you delete a given letter from a python string?
Jun 5, 2018 in Python by nightshade
• 880 points
444 views

2 answers to this question.

0 votes
new_word = old_word.replace("c", "")

Use replace() as shown

answered Jun 6, 2018 by Hamartia's Mask
• 1,580 points
0 votes

If you want to remove the 'J' wherever it appears:

newstr = oldstr.replace("J", "")
For central character removal :

midlen = len(oldstr)/2 newstr = oldstr[:midlen] + oldstr[midlen+1:]

Hope this helps you... For more tech stuffs please go to https://netgears.support/netgear-powerline/

answered Jun 12, 2018 by anonymous

Related Questions In Python

0 votes
2 answers

Finding the index of a character in python string

You can use word.find('o') as well to ...READ MORE

answered Jun 1, 2018 in Python by george
• 200 points
1,237 views
+1 vote
2 answers

How to print first character of each word in upper case of a string in Python

class Solution:     def firstAlphabet(self, s):             self.s=s              k=''              k=k+s[0]              for i in range(len(s)):                     if ...READ MORE

answered Oct 28, 2020 in Python by Anurag
11,711 views
0 votes
1 answer

How to change one character in a string in Python?

Python strings are immutable, you change them ...READ MORE

answered Dec 4, 2018 in Python by Nymeria
• 3,560 points
1,040 views
0 votes
2 answers
+1 vote
2 answers

how can i count the items in a list?

Syntax :            list. count(value) Code: colors = ['red', 'green', ...READ MORE

answered Jul 7, 2019 in Python by Neha
• 330 points

edited Jul 8, 2019 by Kalgi 4,023 views
0 votes
1 answer
+5 votes
6 answers

Lowercase in Python

You can simply the built-in function in ...READ MORE

answered Apr 11, 2018 in Python by hemant
• 5,790 points
3,417 views
0 votes
1 answer

Remove a string suffix

You can remove the substring using slicing. ...READ MORE

answered Jun 7, 2018 in Python by Hamartia's Mask
• 1,580 points
794 views
0 votes
1 answer

Extract element from a set without removing it

Use iter(): element = next(iter(set_1)) READ MORE

answered Jun 7, 2018 in Python by Hamartia's Mask
• 1,580 points
976 views
webinar REGISTER FOR FREE WEBINAR X
REGISTER NOW
webinar_success Thank you for registering Join Edureka Meetup community for 100+ Free Webinars each month JOIN MEETUP GROUP