私はpythonが初めてで、単純なアプリケーション(年齢計算機)を実行しようとしています。私はPython 3を使用しています。
これは私のコードです:
date=2012
age=input("type in the date you born to calculate your age")
print ("your age is ") + (date-age)
私には問題ないように思えますが、TypeError: cannot concatente 'str' and 'int' objects
.