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

  • Home
  • SEARCH
  • 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 8239027
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 7, 20262026-06-07T20:00:27+00:00 2026-06-07T20:00:27+00:00

Possible Duplicate: python .rstrip removes one additional character i have a string vtype defined

  • 0

Possible Duplicate:
python .rstrip removes one additional character

i have a string vtype defined as

vtype = "vidis.fit"

i want to strip the final dis.fit away, so

vtype.rstrip("dis.fit")

but the end result is v, rather than vi, the one I expected/wanted. I’m a bit confused about this, anyone?

EDIT

Thanks everyone. I guess the reason why it confused me in the first place is that, the naming of lstrip and rstrip seems suggesting some sequence, although it only matters to white spaces.

  • 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-06-07T20:00:29+00:00Added an answer on June 7, 2026 at 8:00 pm

    rstrip actually takes a sequence of characters at the end of a string to strip, not a specific string to strip. It’s removing the i because i is in the sequence of characters passed in.

    For example, the order of characters in rstrip doesn’t matter:

    >>> vtype = "vidis.fit"
    >>> vtype.rstrip("dis.fit")
    'v'
    >>> vtype.rstrip("ditfs.")
    'v'
    

    Nor does the number of times a character is in it:

    >>> vtype.rstrip("ditffffsssss.")
    'v'
    

    As the docs specify:

    The chars argument is not a suffix; rather, all combinations of its
    values are stripped

    EDIT: And for fun, if you really want to solve the “how do I remove a string at the end of a string” problem, use rfind with slicing:

    >>> vtype[:vtype.rfind("dis.fit")]
    'vi'
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

Possible Duplicate: python .rstrip removes one additional character What is the problem here? it
Possible Duplicate: python dict.add_by_value(dict_2) ? My input is two dictionaries that have string keys
Possible Duplicate: Python - Check If Word Is In A String. i have a
Possible Duplicate: Python: Get object by id Typically when you see the string representation
Possible Duplicate: Python, compute list difference I have two lists For example: A =
Possible Duplicate: Python timer countdown Hi guys, I want to know about timer in
Possible Duplicate: reverse a string in Python I tried searching the python documentation for
Possible Duplicate: Python: simple list merging based on intersections I have a multiple list:
Possible Duplicate: python random string generation with upper case letters and digits How do
Possible Duplicate: Python nested functions variable scoping After much trial and error I have

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.