Home
Python Tutorial
Introduction
Data Type
Statement
Operator
String
Tuple
List
Dictionary
Collections
Function
Class
File
Buildin Function
Buildin Module
Database
Regular Expressions
Thread
Tkinker
wxPython
XML
Network
CGI Web
Windows
Iterating by Sequence Item : loop through « List « Python Tutorial
Python Tutorial
List
loop through
nameList = [
'A'
,
"B"
,
'C'
,
'D'
]
for
eachName in nameList: print eachName,
"Lim"
7.16.loop through
7.16.1.
Iterating by Sequence Item
7.16.2.
Iterating by Sequence Index
7.16.3.
Appending items to a list.