Difference between revisions of "Create an Array"

From CompSciWiki
Jump to: navigation, search
m (Much easier.... (added in to work with since nothing else was specified))
m (Fixed a couple pluralization issues and some punctuation "We don't need to declare the variables and we also don't need to indicate the type of each array - the type of an array is automatically set ")
 
Line 2: Line 2:
 
ProblemName=Creating An Array
 
ProblemName=Creating An Array
 
|Problem=
 
|Problem=
Ten students' grade are 56%, 34%, 75%, 89%, 78%, 87%, 71%, 67%, 98%, 85%.
+
Ten students' grades are 56%, 34%, 75%, 89%, 78%, 87%, 71%, 67%, 98%, 85%.
 
#Store their grades in an array as percents.
 
#Store their grades in an array as percents.
 
#Convert them to a decimal and store them in an array.
 
#Convert them to a decimal and store them in an array.
Line 10: Line 10:
  
 
|Solution=
 
|Solution=
Compared to java arrays, Python arrays is much easier to work with. 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 automatically set when we assign the value. So the code will be:
+
Compared to java arrays, Python arrays are much easier to work with. We don't need to declare the variables and we also don't need to indicate the type of each array - the type of an array is automatically set when we assign the value. So, the code will be:
  
 
{{CodeBlock|Code=
 
{{CodeBlock|Code=

Latest revision as of 21:32, 4 April 2012

Back to the Program-A-Day homepage

Problem

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

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

Introducing Arrays

Solution

Compared to java arrays, Python arrays are much easier to work with. We don't need to declare the variables and we also don't need to indicate the type of each array - the type of an array is automatically 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