我正在我的交互式 shell 中测试一些 Django 功能
这是我尝试探测这些对象的尝试,请注意最后的无列表
>>> [print(foo) for foo in CharacterSkillLink.objects.all() if foo.speciality]
Streetwise (Street Countdown) Roran
[None]
并且具有更正统的列表理解:
>>> [print(foo) for foo in range(1,10)]
1
2
3
4
5
6
7
8
9
[None, None, None, None, None, None, None, None, None]
九个无,一排一排。
为什么我会这样?