<< Chapter < Page Chapter >> Page >

A practical example

Many years ago when I did a tour of duty as an enlisted man in the U.S. Air Force, the drill sergeant had a habit of lining us up and telling us to "count off."

What that meant was that the first person in the line called out the number one , the person behind him called out the number two , the person behind him called out the number three , etc.

(Since learning about computer programming, I now wonder if the first person should have called out zero. I notice that thefirst case of Ebola in the United States is being identified by the CDC as case 0.)

Assigning an ordinal index

I'm sure the drill sergeant didn't realize that what he was doing was assigning an ordinal index value to each person in the line (and neither did I realize it at the time) .

Using an ordinal index

Even though he didn't know the technical details of ordinal indices, he didn't have any difficulty yelling, "Number six, wash dishes, number fourteen,peel potatoes, number twenty-two, carry out the garbage, etc."

That is what using an index is all about -- using an ordinal index to select an item. As you will see in a future module titled Itse1359-1080-Lists Part 1 , this is also referred to as a subscription in Python. In the context of this module, indexing is the process of assigning an ordinal index value to each data item contained in some sort of acontainer.

In other words, we assign an ordinal number to each item, which describes the numerical position of the item in the container.

A dozen eggs:

For example, if you were very careful, you could use a felt tip pen to assign an ordinal index to each of the twelve eggs contained in acarton containing a dozen eggs. (Should you start with zero or one?)

Then you could extract the egg whose index value is 9 from the container and eat it for breakfast.

Having assigned the index, we can use that index to access the data item corresponding to that index, as in "Number six, wash dishes."

Index values automatically assigned

In this module, we will be using the index values that are automatically assigned to the characters in a string for the purpose of accessing thosecharacters, both individually, and in groups.

Slicing

Here is what Magnus Lie Hetland has to say on the topic of slicing (and indexing as well.) Although this quotation was taken from a discussion of lists, it applies equallywell to strings. (Note that some material was deleted from the quotation for brevity.)

According to Magnus Lie Hetland:

"One of the nice things about lists is that you can access their elements separately or in groups, through indexing and slicing.

Indexing is done (as in many other languages) by appending the index in brackets to the list. (Note that the first element has index 0) ...

(This is the answer to the question about the first egg -- Baldwin)

Slicing is almost like indexing, except that you indicate both the start and stop index of the result, with a colon (":") separating them: ...

Notice that the end is non-inclusive. If one of the indices is dropped, it is assumed that you want everything in that direction. i.e. list[:3]means "every element from the beginning of list up to element 3,non-inclusive." ...

list[3:] would, on the other hand, mean "everyelement from list, starting at element 3 (inclusive) up to, and including, the last one."

For really interesting results, you can use negative numbers too: list[-3]is the third element from the end of the list..."

Questions & Answers

how do you get the 2/50
Abba Reply
number of sport play by 50 student construct discrete data
Aminu Reply
width of the frangebany leaves on how to write a introduction
Theresa Reply
Solve the mean of variance
Veronica Reply
Step 1: Find the mean. To find the mean, add up all the scores, then divide them by the number of scores. ... Step 2: Find each score's deviation from the mean. ... Step 3: Square each deviation from the mean. ... Step 4: Find the sum of squares. ... Step 5: Divide the sum of squares by n – 1 or N.
kenneth
what is error
Yakuba Reply
Is mistake done to something
Vutshila
Hy
anas
hy
What is the life teble
anas
hy
Jibrin
statistics is the analyzing of data
Tajudeen Reply
what is statics?
Zelalem Reply
how do you calculate mean
Gloria Reply
diveving the sum if all values
Shaynaynay
let A1,A2 and A3 events be independent,show that (A1)^c, (A2)^c and (A3)^c are independent?
Fisaye Reply
what is statistics
Akhisani Reply
data collected all over the world
Shaynaynay
construct a less than and more than table
Imad Reply
The sample of 16 students is taken. The average age in the sample was 22 years with astandard deviation of 6 years. Construct a 95% confidence interval for the age of the population.
Aschalew Reply
Bhartdarshan' is an internet-based travel agency wherein customer can see videos of the cities they plant to visit. The number of hits daily is a normally distributed random variable with a mean of 10,000 and a standard deviation of 2,400 a. what is the probability of getting more than 12,000 hits? b. what is the probability of getting fewer than 9,000 hits?
Akshay Reply
Bhartdarshan'is an internet-based travel agency wherein customer can see videos of the cities they plan to visit. The number of hits daily is a normally distributed random variable with a mean of 10,000 and a standard deviation of 2,400. a. What is the probability of getting more than 12,000 hits
Akshay
1
Bright
Sorry i want to learn more about this question
Bright
Someone help
Bright
a= 0.20233 b=0.3384
Sufiyan
a
Shaynaynay
How do I interpret level of significance?
Mohd Reply
It depends on your business problem or in Machine Learning you could use ROC- AUC cruve to decide the threshold value
Shivam
how skewness and kurtosis are used in statistics
Owen Reply
yes what is it
Taneeya
Got questions? Join the online conversation and get instant answers!
Jobilize.com Reply

Get Jobilize Job Search Mobile App in your pocket Now!

Get it on Google Play Download on the App Store Now




Source:  OpenStax, Itse 1359 introduction to scripting languages: python. OpenStax CNX. Jan 22, 2016 Download for free at https://legacy.cnx.org/content/col11713/1.32
Google Play and the Google Play logo are trademarks of Google Inc.

Notification Switch

Would you like to follow the 'Itse 1359 introduction to scripting languages: python' conversation and receive update notifications?

Ask