迷路钥匙

文章
4
资源
0
加入时间
2年10月21天

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(&q

C++枚举类型详解

原创作品,转载请注明来源:http://www.cnblogs.com/shrimp-can/p/5171110.html一、枚举类型的定义enum 类型名 {枚举值表};类型名是变量名,指定枚举类型的名称。枚举值表也叫枚举元素列表,列出定义的枚举类型的所有可用值,各个值之间用“,”分开。例:enum Suit { Diamonds, Hearts, Clubs, Spa...