Write a program to get a string from a given string where all the occurrences of its first char have been changed to except the first char itself

0 votes
The question demands a dynamic approach that'll consider all the reoccurring alphabets and not static approaches that focuses on only one alphabet.
Feb 14, 2019 in Python by Aman Prateek
5,540 views

1 answer to this question.

0 votes

You can use the code below:

lis = []
s=input("Enter String")
for ch in s:
    if ch in lis:
        lis.append('$')
    else:
        lis.append (ch)
print(''.join(str(i) for i in lis))

answered Feb 14, 2019 by Priyaj
• 58,090 points

Related Questions In Python

+1 vote
1 answer
0 votes
1 answer

How to get the size of a string in Python?

If you are talking about the length ...READ MORE

answered Jun 4, 2018 in Python by aryya
• 7,450 points
1,087 views
0 votes
0 answers
0 votes
0 answers
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,070 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,492 views
–1 vote
2 answers

How to find the size of a string in Python?

following way to find length of string  x ...READ MORE

answered Mar 29, 2019 in Python by rajesh
• 1,270 points
1,628 views
0 votes
3 answers

How to get the current time in Python

FOLLOWING WAY TO FIND CURRENT TIME IN ...READ MORE

answered Apr 8, 2019 in Python by rajesh
• 1,270 points
1,712 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