Python Computer Science - Project 4 Repetition Structure
Project 4- Repetition Structure
Please Zip project 4 folder and reference the project template attached below.
Write a program which can iterate the numbers, which are divisible by 7, between a given range 0 and upperLimit.
Deliverables
• The user enters the upperLimit (an integers value)
• Use WHILE statement to display all numbers between 0 and upperLimit.
• Use IF statement to find the numbers.
• The program displays the average of the numbers with appropriate labels.
• Make sure to use main(), and few more functions
SAMPLE RUN (User entry is in RED)
User’s Entry
Enter the upper limit 20
Results
The numbers are
0
7
14
The average of the numbers: 7.00