标签:ror cte 无法 one 字符串拼接 接受 报错 typeerror 列表
【syntaxError:invalid syntax】(语法错误:无效语法)。
多为各种该用英文符号而错用中文符号的报错情况
【TypeError:can only concatenate str (not "int") to str】(类型错误:只能将字符串与字符串拼接)
留意整数与字符串的拼接,容易出现整数+‘字符串’,出现类型错误
【ValueError:invalid literal for int() with base 10: ‘3.8‘】(值异常:浮点类型字符串无法使用int()强制转换)。
【IndentationError: expected an indented block】(缩进错误:期望一个缩进块)
【TypeError: append() takes exactly one argument (2 given)】append后的括号里只能接受一个参数,但却给了两个。所以,用append()给列表增加元素,每次只能增加一个元素。
标签:ror cte 无法 one 字符串拼接 接受 报错 typeerror 列表
原文地址:https://www.cnblogs.com/mottosilver/p/12382397.html