Answers for "delete text before character python"

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
0

python remove everything after character

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

Code answers related to "delete text before character python"

Python Answers by Framework

Browse Popular Code Answers by Language