# 从键盘中输入5个学生的名字,存储到列表中,然后打印出每个学生名字中的第2个字母
student_list = [] # 存放学生的列表
i = 1
while i <= 5: # while循环输入学生名字
student = input("请输入学生名字:")
student_list.append(student)
i += 1
# 遍历学生列表
for num in student_list:
print("%s的第二个字母是%s" % (num, num[1]))
网友评论