TypeError:列表索引必须是整数或切片,而不是浮点数

2023-09-27Python开发问题
1

本文介绍了TypeError:列表索引必须是整数或切片,而不是浮点数的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着跟版网的小编来一起学习吧!

问题描述

def convBin():
    cont = []
    rest = []
    dev = []
    decimal = []

    print("Ingrese el valor a convertir: ")
    valor = ast.literal_eval(input())

    if isinstance(valor, int):
        while valor > 0:
                z = valor // 2
            resto = valor%2
            valor = valor // 2
            cont.append(z)
            rest.append(resto)

        cont.reverse()
        rest.reverse()

        dev.append(cont[0])

        x = 0
        while x <= (len(rest) - 1):
            dev.append(rest[x])
            x += 1

        print(" ")
        print("Lista de devoluciones: ")
        print(dev)
        print("")

    elif isinstance(valor, float):
        a = valor // 1
        b = valor % 1

        while a > 0:
            z = a // 2
            resto = a%2
            a = a // 2
            cont.append(z)
            rest.append(resto)

        cont.reverse()
        rest.pop()

        dev.append(cont[1])

        for i in rest:
            dev.append(rest[i])

        print("Inserte el número de error minimo")
        num = input()

        while num > 0:
            dec = b * 1
            dec2 = dec//1
            dec %= 1        
            decimal.append(dec2)


        print("Parte entera: ")
        print(dev)
        print("Parte decimal:")
        print(num)

    else:
        print("Ha aparecido un error")

Its shows me an error that i cant append a float into a list.

After asking you a number, it controls which type of number is it. When it is an int, it doesnt have any problem. But when its a float, it says that it cant add a float into a list where its saved the numbers of the operations made before.

Can someone explain it to me why I cant append floats into a list or how can I solve the problem?

Traceback (most recent call last): File "Converter.py", line 169, in convBin(); File "Converter.py", line 53, in convBin dev.append(rest[i]) TypeError: list indices must be integers or slices, not float

Thanks.

解决方案

for i in rest will give you the actual item in the list, and not index. From your code, it seems that you want to append the value. But actually, you are treating the value as index again, and trying to fetch it from the array.

for i in rest:
            dev.append(rest[i])

Fix:

Just change above to:

dev.extend(rest)

But this code, takes a value from rest, then again uses that value as an index, and if that value i turns out to be a float, it throws an exception.

You haven't mentioned which line gives you this error. But I think it must be this one. It might give many other unexpected errors like array out of bound, etc

This is the error I get, if I run your code for valor = 18.5

https://ideone.com/HGagLb

Traceback (most recent call last): File "./prog.py", line 71, in File "./prog.py", line 51, in convBin TypeError: list indices must be integers or slices, not float

Difference between the above example, and the one below(from your code, where you handle int):

x = 0
while x <= (len(rest) - 1):
    dev.append(rest[x])
    x += 1

is that, in the first case, i is actually the item(int or float) in the list rest, while in the later one, it's a valid index.

这篇关于TypeError:列表索引必须是整数或切片,而不是浮点数的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持跟版网!

The End

相关推荐

在xarray中按单个维度的多个坐标分组
groupby multiple coords along a single dimension in xarray(在xarray中按单个维度的多个坐标分组)...
2024-08-22 Python开发问题
15

Pandas中的GROUP BY AND SUM不丢失列
Group by and Sum in Pandas without losing columns(Pandas中的GROUP BY AND SUM不丢失列)...
2024-08-22 Python开发问题
17

pandas 有从特定日期开始的按月分组的方式吗?
Is there a way of group by month in Pandas starting at specific day number?( pandas 有从特定日期开始的按月分组的方式吗?)...
2024-08-22 Python开发问题
10

GROUP BY+新列+基于条件的前一行抓取值
Group by + New Column + Grab value former row based on conditionals(GROUP BY+新列+基于条件的前一行抓取值)...
2024-08-22 Python开发问题
18

PANDA中的Groupby算法和插值算法
Groupby and interpolate in Pandas(PANDA中的Groupby算法和插值算法)...
2024-08-22 Python开发问题
11

PANAS-基于列对行进行分组,并将NaN替换为非空值
Pandas - Group Rows based on a column and replace NaN with non-null values(PANAS-基于列对行进行分组,并将NaN替换为非空值)...
2024-08-22 Python开发问题
10