学生信息系统: (名字,年龄,性别,邮箱地址) 为了减少存储开支,每个学生的信息都以一个元组形式存放 如: ('tom', 18,'male','tom@qq.com' ) ('jom', 18,'mal','jom@qq.com' ) ....... 这种方式存放,如何访问呢? 普通方法: #!/usr/bin/python3 student = ('tom', 18, 'male', 'tom @ qq.com' ) print(student[0]) if student[1] > 12:…