Cette page n'est pas encore disponible en français, sa traduction est en cours.
Si vous avez des questions ou des retours sur notre projet de traduction actuel, n'hésitez pas à nous contacter.

Metadata

ID: python-best-practices/invalid-strip-call

Language: Python

Severity: Notice

Category: Best Practices

Description

When using .strip(), you only need to pass the letters you want to split on. There is no need to specify the same letter twice.

Non-Compliant Code Examples

"Hello World".strip("Hello")  # letter l is present twice in the string

Compliant Code Examples

"Hello World".strip("Helo")  # letter l is present twice in the string