码迷,mamicode.com
首页 > 编程语言 > 详细

python产生错误:can only concatenate str (not "int") to str

时间:2019-10-12 12:43:20      阅读:156      评论:0      收藏:0      [点我收藏+]

标签:info   产生   print   inpu   解决   input   usr   ace   NPU   

代码为:

#!/usr/bin/python
# _*_ coding:utf-8_*_
# print("hello world!")
name = input("name:")
age = int(input("age:"))
print(type(age))
#print(type(age), type(str(age)))
home = input("home:")
print(type(home))
info3='''
---------info3 of ''' + name + ''' --------------
name: ''' + name + '''
age:''' + age + '''
home:''' + home + '''
--------end---------
'''
print(info3)

在使用python拼接进行格式化输出时出现如下错误:

Traceback (most recent call last):
  File "D:\linux\python\test2\day1\info.py", line 22, in <module>
    home:''' + home + '''
TypeError: can only concatenate str (not "int") to str

针对此问题,解决方法是:
主要是因为age的字段中使用int格式来验证,导致此问题。

age = input("age:")

python产生错误:can only concatenate str (not "int") to str

标签:info   产生   print   inpu   解决   input   usr   ace   NPU   

原文地址:https://www.cnblogs.com/wang50902/p/11660761.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!