私は現在、Djangoのドキュメントのいくつかを読んでいますが、これに出くわしました
obj, created = Person.objects.get_or_create(first_name='John', last_name='Lennon',
defaults={'birthday': date(1940, 10, 9)})
私はまだその過程でpythonを学んでいます。コードの「obj, created =」の部分に少し混乱しています。「obj」と「created」の両方が実行されると仮定します
Person.objects.get_or_create(first_name='John', last_name='Lennon',
defaults={'birthday': date(1940, 10, 9)})