i am used to the c++ way of for loops but the python loops have left me confused.
for party in feed.entry:
print party.location.address.text
here party in feed.entry. what does it signify and how does it actually work?
|
|
|
|
|
|
|
feed.entry is property of feed and it's value is (if it's not, this code will fail) object implementing iteration protocol (array, for example) and has iter method, which returns iterator object Iterator has next() method, returning next element or raising exception, so python for loop is actually:
|
||||
|
|
|
feed.entry is something that allows iteration, and contains objects of some type. This is roughly similar to c++:
|
||
|
|
|
party simply iterates over the list feed.entry Take a look at Dive into Python explainations. |
||||||
|
|
|
In Python, for bucles aren't like the C/C++ ones, they're most like PHP's foreach. What you do isn't iterate like in a while with "(initialization; condition; increment)", it simply iterates over each element in a list (strings are ITERABLE like lists). For example:
will output
|
||||||||||
|
|
|
To add my 0.05$ to the previous answers you might also want to take a look at the enumerate builtin function
|
||
|
|
|
|
Python's |
||
|
|