Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

How would I go about getting the first character from the first string in a list in python? If would seem that I could use mylist[0][1:] but that errors out.

share|improve this question
1  
what error do you get? – JMax Aug 18 '11 at 13:23

3 Answers

up vote 12 down vote accepted

You almost had it right. The simplest way is

mylist[0][0]   # get the first character from the first item in the list

but

mylist[0][:1]  # get up to the first character in the first item in the list

would also work.

You want to end after the first character (character zero), not start after the first character (character zero), which is what the code in your question means.

share|improve this answer
Thanks for the help! I'm just starting to learn python and so I'm still learning the syntax for a lot of this stuff. Thanks for the clear explanation. – Trcx Aug 18 '11 at 13:31

Indexing in python starting from 0. You wrote [1:] this would not return you a first char in any case - this will return you a rest(except first char) of string.

If you have the following structure:

mylist = ['base', 'sample', 'test']

And want to get fist char for the first one string(item):

myList[0][0]
>>> b

If all first chars:

[x[0] for x in myList]
>>> ['b', 's', 't']    

If you have a text:

text = 'base sample test'
text.split()[0][0]
>>> b
share|improve this answer

Try mylist[0][0]. This should return the first character.

share|improve this answer
Perfect! That's just what I needed! – Trcx Aug 18 '11 at 13:29

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.