Welcome to Westonci.ca, where finding answers to your questions is made simple by our community of experts. Get immediate answers to your questions from a wide network of experienced professionals on our Q&A platform. Experience the convenience of finding accurate answers to your questions from knowledgeable experts on our platform.

The language is python and I’m pretty new and don’t get this help pleas

The Language Is Python And Im Pretty New And Dont Get This Help Pleas class=

Sagot :

Since there are 37 students, and each student needs two books, that's 74 books in total.

students = 37

total_books_needed = 37*2

total_books = 76

remainder = total_books%total_books_needed

The remainder will be two because 76 - 74 = 2. Two books are left over.