我是靠谱客的博主 奋斗大神,最近开发中收集的这篇文章主要介绍python nonetype_Python数学-TypeError:'NoneType'对象不是下标,觉得挺不错的,现在分享给大家,希望可以做个参考。

概述

在此链接[https://docs.python.org/2/tutorial/datastructures.html]中,您可以阅读此方法“将列表中的项目排序到位”,这意味着将对结果值进行排序并结果将取决于自己。 该函数返回无。

当您将结果分配给第14行中的“列表”时

lista = list.sort(lista)

您将其设置为无。 那是错误。 没有总是有数据,也不能是可下标的。 “ TypeError:'NoneType'对象不可下标”

要更正此错误(用于对列表进行排序),请在第14行执行此操作:

lista.sort() # this will sort the list in line

但是还有其他一些错误:在第18行中,当您分配时:

list = [v2, v4]

您关闭此内置类型“列表”,将得到以下错误:

TypeError: 'list' object is not callable

要更正此问题,请说:

lista2 = [v2, v4]

在第19行中,再次出现与第14行相同的错误。执行此操作以对其他列表进行排序:

lista2.sort()

在第21行中,您尝试索引内置类型列表。 要纠正此问题,请执行以下操作:

b = lista2[1] = lista2[0]

有了这个,您的代码将运行良好。 最后是完整的正确代码:

import math

print("The format you should consider:")

print str("value 1a")+str(" + ")+str("value 2")+str(" = ")+str("value 3a ")+str("value 4")+str("n")

print("Do not include the letters in the input, it automatically adds them")

v1 = input("Value 1: ")

v2 = input("Value 2: ")

v3 = input("Value 3: ")

v4 = input("Value 4: ")

lista = [v1, v3]

lista.sort()

a = lista[1] - lista[0]

lista2 = [v2, v4]

lista2.sort()

b = lista2[1] = lista2[0]

print str(a)+str("a")+str(" = ")+str(b)

最后

以上就是奋斗大神为你收集整理的python nonetype_Python数学-TypeError:'NoneType'对象不是下标的全部内容,希望文章能够帮你解决python nonetype_Python数学-TypeError:'NoneType'对象不是下标所遇到的程序开发问题。

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

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

评论列表共有 0 条评论

立即
投稿
返回
顶部