Create an Array

From CompSciWiki
Revision as of 22:53, 3 April 2012 by YulinT (Talk | contribs)

(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
Jump to: navigation, search

Back to the Program-A-Day homepage

Problem

Ten students' grade are 56%, 34%, 75%, 89%, 78%, 87%, 71%, 67%, 98%, 85%

  1. Store their grades in an array as percent
  2. Convert to decimal and store them in an array
  3. Store their names in an array
 

Introducing Array

Solution

Compare to java array, Python array is much easier. We don't need to declare the variables and we also don't need to indicate the type of each array. Because the type of an array is automatedly set when we assign the value. So the code will be

 intArray = [56, 34, 75, 89, 78, 87, 71, 67, 98, 85]; 

Code

Solution Code

Back to the Program-A-Day homepage