我需要创建一个名为f3Groups的函数(),它接受一个参数。还有一个名为cgList的列表来表示整个类,它包含3个列表来表示3个组。cgList可以是空列表,但不能有任何空组,例如cgList = [],当这个班级没有学生时。返回cgList,但是我不知道如何做。到目前为止,我只做了一个打印用户输入列表的函数。
def get_student_list():
stdlist = []
while True:
iStr = input('Please enter a new student name, ("quit" if no more student)')
if iStr == "quit":
return stdlist
if iStr == "":
print("Empty student name is not allowed.")
else:
stdlist.append(iStr)
stdList = get_student_list()
print("The whole class list is")
for x in stdList:
print(x, end=' ')
``
I want 7 user inputs. User input 1, 4 and 7 in one list group. User input 2 and 5 in one group. User input 3 and 6 in one group. After that print them horizontally.
``The whole class list is ['Student a', 'Student b', 'Student c', 'Student d', 'Student e'. 'Student f', 'Student g']
Group 1: ['Student a', 'Student d', 'Student g']
Group 2: ['Student b', 'Student e']
Group 3: ['Student c', 'Student f']
`
The above is the output I want. Is there a way to do it?
2条答案
按热度按时间webghufk1#
下面是您需要的代码:
如您所见,要在字符串后面水平打印列表,只需在字符串后面添加一个逗号和变量。
印刷品:
此外,要将学生分成小组,使用嵌套列表是一个简单的解决方案。这涉及到列表中的列表。学生可以分配索引。
w6lpcovy2#
我需要7个用户输入。
那么你不需要while True循环,你只需要迭代到7,你可以使用
while i < 8
循环,并设置i = 1
用户在一个列表组中输入1、4和7。用户在一个组中输入2和5。用户在一个组中输入3和6。
在for循环中,可以使用变量
i
来检查应该将学生放在哪个组中。然后水平打印。
然后,您可以在函数返回后单独打印它们。
输出功率
如果您想将学生逐个添加到每个列表中,使它们尽可能保持相同的长度,您可以这样做。
创建与上一个示例相同的输出。