我是靠谱客的博主 甜美水壶,最近开发中收集的这篇文章主要介绍【sort()方法与sorted()函数】数组sort()方法使用后报错object of type ‘NoneType‘,觉得挺不错的,现在分享给大家,希望可以做个参考。

概述

场景:
美团笔试题——正则序列
下面的代码运行后报错【TypeError: object of type ‘NoneType’ has no len()】

分析:
len(sorted_list)处的错误,意为sorted_list为NoneType
往上找sorted_list的定义,sorted_list=list(map(int,s.split())).sort()

def minopt(s):
    if s is None:
        return
    sorted_list=list(map(int,s.split())).sort()
    res=0
    for i in range(1,len(sorted_list)+1):
        res+=abs(i-sorted_list[i-1])
    return res
n=int(input())
s=input()
print(minopt(s))

原因:
数组对象使用sort()方法后,不会返回一个新的对象,只是改变原数组的值。
参考下面的示例来理解:
在这里插入图片描述

解决方法:

  1. 使用sorted()函数,它会产生一个新的列表对象而不改变原列表的大小。
  2. 继续使用sort()方法,取消赋值操作,分为两步,先将控制台输入处理为list对象sorted_list=list(map(int,s.split()))
    再对list对象使用sort方法,不进行赋值操作!sorted_list.sort()

此处用的方法2

def minopt(s):
    if s is None:
        return
    sorted_list=list(map(int,s.split()))
    sorted_list.sort()
    res=0
    for i in range(1,len(sorted_list)+1):
        res+=abs(i-sorted_list[i-1])
    return res
n=int(input())
s=input()
print(minopt(s))

区分sorted()函数与数组的sort()方法
在这里插入图片描述
在这里插入图片描述

最后

以上就是甜美水壶为你收集整理的【sort()方法与sorted()函数】数组sort()方法使用后报错object of type ‘NoneType‘的全部内容,希望文章能够帮你解决【sort()方法与sorted()函数】数组sort()方法使用后报错object of type ‘NoneType‘所遇到的程序开发问题。

如果觉得靠谱客网站的内容还不错,欢迎将靠谱客网站推荐给程序员好友。

本图文内容来源于网友提供,作为学习参考使用,或来自网络收集整理,版权属于原作者所有。
点赞(51)

评论列表共有 0 条评论

立即
投稿
返回
顶部