Python strip() not working inside a function

时光总嘲笑我的痴心妄想 提交于 2019-12-04 07:15:44

问题


I am trying to use strip() to trim off the space before and after a string. It works fine for

str1 = "  abdced "
str1.strip()

However when I use it inside a function, it is not working:

def func(str1):
    return str1.strip() 

print func("   abdwe ") 

It won't trim off any space. Anyone can tell what's happening? Thanks!


回答1:


strip is not an in-place method, meaning it returns a value which must be reassigned like so:

str1 = str1.strip() # the string is reassigned to the returned stripped string



回答2:


Three things I see.

First, you are not assigning the strip variable to anything, second you are trying to do this in a return.

The return should only have the variables you wish to return to be used in another function. You can print from this function, but your return statement should not have any activity, only the variable to be returned.

Third, that print statement looks off to me. At the very least it isn't how I would do the print.

def func(str1):
    str1 = "  abdced "

    str2 = str1.strip()

    print(str2)

    return str1, str2


来源:https://stackoverflow.com/questions/29783450/python-strip-not-working-inside-a-function

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!