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.
Tell me more
×
Stack Overflow is a question and answer site for
professional and enthusiast programmers. It's 100% free, no registration required.
|
|
You almost had it right. The simplest way is
but
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. |
|||
|
|
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:
And want to get fist char for the first one string(item):
If all first chars:
If you have a text:
|
|||
|
|
|
Try |
|||
|
|