下列关于python字典变量的定义中错误的是_问一下如何将python3中的字典名字定义为变量?...
from collections import namedtupleStudent = namedtuple('Student', 'name gender score')names = ['ni', 'wo', 'ta']gender = ['F', 'M', 'F']scores = [100, 0, 50]students = [Student(*info) for info in zip(...