2018年10月24日
摘要: # Python学习之错误整理: # 错误一:# TypeError: cannot concatenate 'str' and 'int' objects# 不能连接str和int对象age = 23message = "Happy " + age + "rd Birthday!"# 分析:# 这 阅读全文
posted @ 2018-10-24 10:11 滴水之光 阅读(289) 评论(0) 推荐(0) 编辑