我想定义一个去除aphostrophe的函数,以及它在aphostrophe之后的字母:
例如:
remove_aph("What's")
>>>What
remove_aph("Kha'Zix")
>>>Kha
答案 0 :(得分:1)
您可以使用index
获取职位:
>>> s= "What's"
>>> s[:s.index("'")] # this is assuming that you always have a single quote
# "What"
或者,您可以在'
上拆分并获得第一个值
>>> s.split("'")[0]
# "What"
答案 1 :(得分:1)
def remove_aph(word):
return word.split("'")[0]