LoginSignup
2
2

More than 5 years have passed since last update.

かなりいい加減なPythonエラー解決方法

Posted at

TypeError: can only concatenate tuple (not "instance") to tuple

django.core.exceptions.FieldError: Local field 'created_at' in class 'TestClass' clashes with field of similar name from base class 'BaseClass'
親クラスで定義したフィールドを子クラスでも定義したらでた.


ValueError: invalid literal for int() with base 10: ''

num = int(num)

とかでnumの値がintにできないときにでる.


ImportError: No module named syslog

Unix系だと特になにも考えず起きることはないけど、windows系のPCだと起きるかもしれない。
pythonの読み込みパスが通っているところに、syslog.pyというファイルをつくって中身をgoogle先生に聞けば解決すると思う。

2
2
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
2
2