Answers for "how to delete whole parts of s tring before a character python"

1

drop all characters after a character in python

sep = '...'
stripped = text.split(sep, 1)[0]
Posted by: Guest on February-23-2021
2

How to remove all characters after a specific character in python?

text = input()
sep = '...'
stripped = text.split(sep, 1)[0]
print(stripped)
Posted by: Guest on August-31-2021

Code answers related to "how to delete whole parts of s tring before a character python"

Python Answers by Framework

Browse Popular Code Answers by Language