twitter facebook

[PYTHON]TypeError: unsupported operand type(s) for +: 'int' and 'str'

print( id + ',' + name )
TypeError: unsupported operand type(s) for +: 'int' and 'str' 数値と文字列は足したり結合できない というエラー
print( str(id) +',' + name )
AUTHOR
@えのえの
最終更新日 2021/01/19
FAVORITE good stock
LINK TAG
記法を見る
1745890366