Search
 
SCRIPT & CODE EXAMPLE
 
CODE EXAMPLE FOR PYTHON

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

text = input()
sep = '...'
stripped = text.split(sep, 1)[0]
print(stripped)
Source by stackoverflow.com #
 
PREVIOUS NEXT
Tagged: #How #remove #characters #specific #character
ADD COMMENT
Topic
Name
7+7 =