# Convert string column to float
def str_column_to_float(dataset, column):
for row in dataset:
row[column] = float(row[column].strip())
print(row[column])
Я пытаюсь создать вышеуказанную функцию в python с помощью ноутбука Jupyter. Но я получаю сообщение об ошибке, как показано ниже:
File "<ipython-input-5-b591f37367db>", line 5
print(row[column])
^
TabError: inconsistent use of tabs and spaces in indentation
Может кто-нибудь помочь мне исправить это?