You are a manager of a Wally's Training Gym and you encourage your trainers to enroll new members. Input is the trainer's last name and the number of new enrollees, and names of each new member. Output is the number of trainers who have enrolled members in each of three categories: 0-5 new members, 6-10 new members, and 11 to 15 new members, as well as the names of each new enrollee. Write an application that allows the user to enter any number Trainer's names, number of new members, and names of each new member. Output is to display the names of trainers who are in each category, and the new members enrolled. Use good programming techniques and use appropriate variable names, use an array to store the names and number of new enrollees, and use prompts for the input and labels with the display. Write your program using Python. You may use a free version of Python at Replit. com Both header comments and step comments are encouraged as it will help for logic to be better. Header comments should include the following: Name of the submission - Trainers/enrollees Author of the submission Summary/goal of the submission Variables used with a short description of the variable, as well as the format of the data (e.g. datatype)
You are a manager of a Wally's Training Gym and you encourage your trainers to enroll new members. Input is the trainer's last name and the number of new enrollees, and names of each new member. Output is the number of trainers who have enrolled members in each of three categories: 0-5 new members, 6-10 new members, and 11 to 15 new members, as well as the names of each new enrollee. Write an application that allows the user to enter any number Trainer's names, number of new members, and names of each new member. Output is to display the names of trainers who are in each category, and the new members enrolled. Use good programming techniques and use appropriate variable names, use an array to store the names and number of new enrollees, and use prompts for the input and labels with the display.
Write your program using Python. You may use a free version of Python at Replit. com
Both header comments and step comments are encouraged as it will help for logic to be better. Header comments should include the following:
- Name of the submission - Trainers/enrollees
- Author of the submission
- Summary/goal of the submission
- Variables used with a short description of the variable, as well as the format of the data (e.g. datatype)
Trending now
This is a popular solution!
Step by step
Solved in 2 steps
You are a manager of a Wally's Training Gym and you encourage your trainers to enroll new members. Input is the trainer's last name and the number of new enrollees. Output is the number of trainers who have enrolled members in each of three categories: 0-5 new members, 6-10 new members, and 11 to 15 new members. Write an application that allows the user to enter 15 Trainer's names and the number of new members they have enrolled into an array. Output is to display the number of trainers who are in each category. Use good programming techniques that you have learned throughout the course. Use appropriate variable names, use an array to store the names and number of new enrollees, and use prompts for the input and labels with the display