如何编写一个带有单词的函数,并在中间返回带有*的第一个和最后一个字母。 [蟒蛇]

时间:2015-03-09 04:38:47

标签: python-3.x

到目前为止,如果做错了什么或者做得对,我不知道我在做什么 这是我的证书3的研究

 def func(hell):
     value=hell[::3]
     return value

print(func("hell"))

1 个答案:

答案 0 :(得分:1)

使用word[0]访问第一个字母,使用word[-1]访问最后一个字母。然后使用字符串连接添加"*"

def func(word):
    if word:
        return word[0]+"*"+word[-1]

>>> func("hello")
'h*o'
>>> func("foo")
'f*o'
>>> func("")
>>>