Пример: есть группа Group, есть студенты Students.
arr={} Group = 1 arr[Group] = {} Students = 1 arr[Group][Students] = u'Иванов' Group = 1 arr[Group] = {} Students = 2 arr[Group][Students] = u'Петров' Group = 1 arr[Group] = {} Students = 3 arr[Group][Students] = u'Сидоров' for stud in arr[1]: print(arr[1][stud])