Latest Awards
Complete 10 python programs which focus on loops.

morgan

Score over 100 points in total

vincebanter10

Complete any 5 python programs

vincebanter10

Complete 3 python list based tasks

vincebanter10

Complete 5 python list based tasks

vincebanter10

Complete 10 python list based tasks

dman12

Score over 1000 points in total

april-logan

Complete any pygame task

april-logan

Complete any 3 pygame tasks

april-logan

You have to complete 5 pygame tasks

april-logan

Score over 500 points in total

sam-edmund

Complete any pygame task

sam-edmund

Complete any 3 pygame tasks

sam-edmund

You have to complete 5 pygame tasks

sam-edmund

Complete any pygame task

12wrigleyf

Complete any 3 pygame tasks

12wrigleyf

You have to complete 5 pygame tasks

12wrigleyf

Score over 500 points in total

jhoughton12

Complete any 10 python prograns

jhoughton12

Complete 10 python programs which focus on loops.

jhoughton12

Python Score
tasks = 0
achivements = 0
freestyle = 0
Total = 0
Top 5 Scores
114gilo 3500
2joss-nolan-2 2530
3alexdawkins 2515
4byrnebrian 2080
512wattsl 1750
Click to view all scores
Who else completed this task?
No one has completed this task yet. Be the first!

Adding up the cost

Let us consider a shopping list. All of the prices of the items are stored in an array as shown below

prices = [3.99, 12.99, 4.49, 18.99, 0.99, 0.89, 2.35]

To add up the total for this we need to loop over each price. With each price we need to add it to a total (which is initially zero) and then finally print the result out. These would be the basic steps and translating them into code we get –

prices = [3.99, 12.99, 4.49, 18.99, 0.89, 2.35]
x = 0
total = 0
while x < len(prices):
    total = total + prices[x]
    x = x + 1
print "total cost is", total

Looping over an array in this way is a easy way to do calculations on the contents of the array. In this case to work out the sum of all prices.

Add a 0.99 item to the end of the array and run to move onto the next exercise.

Output: (clear)

Leave a Reply

You must be logged in to post a comment.