
Data Structure
Networking
RDBMS
Operating System
Java
MS Excel
iOS
HTML
CSS
Android
Python
C Programming
C++
C#
MongoDB
MySQL
Javascript
PHP
- Selected Reading
- UPSC IAS Exams Notes
- Developer's Best Practices
- Questions and Answers
- Effective Resume Writing
- HR Interview Questions
- Computer Glossary
- Who is Who
Print First Character of Each List in Python
Assuming that the list is collection of strings, the first character of each string is obtained as follows −
>>> L1=['aaa','bbb','ccc'] >>> for string in L1: print (string[0]) a b c
If list is a collection of list objects. First element of each list is obtained as follows −
>>> L1=[[1,2,3],[4,5,6],[7,8,9]] >>> for list in L1: print (list[0]) 1 4 7
Advertisements