美文网首页
python -27-输入5个学生名字,存储到列表中

python -27-输入5个学生名字,存储到列表中

作者: hsiaojun | 来源:发表于2018-04-19 01:30 被阅读0次
# 从键盘中输入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]))

相关文章

网友评论

      本文标题:python -27-输入5个学生名字,存储到列表中

      本文链接:https://www.haomeiwen.com/subject/vkdikftx.html