Python Basics Little Exercise

Source: Internet
Author: User

defMain (): number= Int (Input ("Please enter the total number of students:"))#Enter the total number of students to be enteredCount = number#use a variable to save the total number of studentsStudents = List ()#Create a list to store student information     while(number):#into the LoopStudent = {}#Student Information ListName = input ("Please enter the student's name:")#Enter student's namestudent['name'] = Name#Dictionary Assignmentgender = input ("Please enter his gender:")#Enter Genderstudent['Gender'] = Gender#Dictionary AssignmentStudents.append (Student)#Add This information to the listNumber-= 1#Total Students-1    Print("%d student information is ==========>%s"% (count, students))#end of loop, print list informationif __name__=='__main__': Main ()

# Student Information Entry display code

# Enter the total number of students to be entered

# Enter basic information for students

# Student Information Entry complete display to the user

Python Basics Little Exercise

Related Article

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.