我是靠谱客的博主 迷路钥匙,最近开发中收集的这篇文章主要介绍TypeError: can only concatenate str (not “int“) to str,cannot convert the series to <class ‘int‘>,觉得挺不错的,现在分享给大家,希望可以做个参考。

概述

TypeError: cannot convert the series to <class ‘int’>
TypeError: can only concatenate str (not “int”) to str
今天在学习python遇到两个报错,这两个报错其实都算是字符格式的错误,因为字符不一致所以无法相加。
如果仅仅是普通的两个字符相加,我们仅需换成同样的字符既可以

1 + “1” #这是错的,因为格式不一致

如果想等于2,需要换成整数的类型,仅需

1 + int("1")

如果想等于“11”,需要将整数型换成字符型,即可

str(1) + "1"

但因为我要解决的是不同字符类型数据的相加

data_null['FamilySize'] = data_null['SibSp'] + data_null['Parch'] + 1
#这是泰坦尼克数据集,我只是把它导进了数据库,在csv里面是没问题的,因为我在导入的时候,字段是字符型的

因为data_null[‘SibSp’] 和data_null[‘Parch’]都是一维数组,不能仅仅的加int,而需要改成这样的才不会报错。

data_null['FamilySize'] = data_null['SibSp'].astype(int) +
data_null['Parch'].astype(int) + 1

astype()函数是可用于转化dateframe某一列的数据类型。

最后

以上就是迷路钥匙为你收集整理的TypeError: can only concatenate str (not “int“) to str,cannot convert the series to <class ‘int‘>的全部内容,希望文章能够帮你解决TypeError: can only concatenate str (not “int“) to str,cannot convert the series to <class ‘int‘>所遇到的程序开发问题。

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

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

评论列表共有 0 条评论

立即
投稿
返回
顶部