python 中 insert 返回 None

Posted 赵先鑫

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了python 中 insert 返回 None相关的知识,希望对你有一定的参考价值。

题目:"abcd" 和 "acdb" 称为转换字符串,请编写一个函数,判断输入的两个字符串是不是转换字符串。

本题有两个坑:1:insert 在使用的时候返回的字符串为None。2 :insert 在使用的时候数据已经插入原列表

s1 = "abcd"
s2 = "acdb"

def changeChar(s1, s2):
    lst_s1 = list(s1)
    lst_s2 = list(s2)
    lst_s2.insert(1, lst_s2.pop(-1))
    return True if lst_s1 == lst_s2 else False
      

if __name__ == "__main__":
    c = changeChar(s1, s2)
    print(c)

 

以上是关于python 中 insert 返回 None的主要内容,如果未能解决你的问题,请参考以下文章

此代码用于使用 python 返回 None 的 Web Scraping。为啥?任何帮助,将不胜感激

insert 和 if x is not None

使用 poll() 方法(在 opensuse 中)运行 python 模块时,终端显示返回值为 None?

尝试将身份验证令牌存储为python中的系统变量,但在打印时返回None

Python:Beautifulsoup 返回 None 或 [ ]

python django ajax:ValueError:视图没有返回 HttpResponse 对象。它返回 None 而不是