473,396 Members | 1,995 Online
Bytes | Software Development & Data Engineering Community
Post Job

Home Posts Topics Members FAQ

Join Bytes to post your question to a community of 473,396 software developers and data experts.

accessing keys in dict

hi,

a_dict = {'name':'apple', 'color':'red', 'texture':'smooth',
'shape':'sphere'}

is there any difference between ..

for key in a_dict:

from

for key in a_dict.keys():
which is more preferred? any difference in performance?

THanks
james

Aug 15 '07 #1
3 5125
In message <11**********************@l22g2000prc.googlegroups .com>,
james_027 wrote:
is there any difference between ..

for key in a_dict:

from

for key in a_dict.keys():
I'm assuming the former is equivalent to

for key in a_dict.iterkeys() :
Aug 25 '07 #2
On Aug 25, 7:41 am, Lawrence D'Oliveiro <l...@geek-
central.gen.new_zealandwrote:
In message <1187143106.021325.104...@l22g2000prc.googlegroups .com>,

james_027 wrote:
is there any difference between ..
for key in a_dict:
from
for key in a_dict.keys():

I'm assuming the former is equivalent to

for key in a_dict.iterkeys() :
Never assume. A better approach would be to experiment:

>>a_dict = {'name':'apple', 'color':'red', 'texture':'smooth',
'shape':'sphere'}
>>for i in a_dict: print i
color
shape
name
texture
>>for i in a_dict.iterkeys(): print i
color
shape
name
texture
>>for i in a_dict.itervalues(): print i
red
sphere
apple
smooth
>>for i in a_dict.iteritems(): print i
('color', 'red')
('shape', 'sphere')
('name', 'apple')
('texture', 'smooth')

Aug 25 '07 #3
On Sat, 25 Aug 2007 19:05:07 +0000, Dustan wrote:
Never assume. A better approach would be to experiment:
I assume that you would not like it if I poked you in the eye with a
sharp stick, but perhaps I better experiment...

*wink*

More seriously, if you wish to compare dict.keys() and dict.iterkeys(),
iterating over them doesn't help you because it shows only the
similarities, not the differences. But this will:
>>d = {1:"one", 2:"two"}
d.keys()
[1, 2]
>>d.iterkeys()
<dictionary-keyiterator object at 0xb7ecd280>

dict.keys() retrieves all the keys at once, up front, whether you need
them all or not. dict.iterkeys() returns an iterator which retrieves the
keys lazily, only when needed. Iterating over the dict itself is the same
as using iterkeys:
>>iter(d)
<dictionary-keyiterator object at 0xb7ecd4a0>
Performance-wise, the difference for small dicts may be trivial:
>>d = dict(zip(xrange(1000), xrange(1000)))
import timeit
timeit.Timer("for key in d: pass", "from __main__ import d").repeat()
[71.805022954940796, 71.10006308555603, 70.985043048858643]
>>timeit.Timer("for key in d.keys(): pass",
.... "from __main__ import d").repeat()
[80.323757886886597, 76.463414907455444, 76.681307792663574]

A six second difference on a million iterations of the loop is probably
not worth losing sleep over. But if your dict is very big, things may be
different:
>>d = dict(zip(xrange(1000000), xrange(1000000)))
timeit.Timer("for key in d: pass",
.... "from __main__ import d").repeat(number=100) # I don't have all day...
[9.2374939918518066, 8.3636147975921631, 8.3667001724243164]
>>timeit.Timer("for key in d.keys(): pass",
.... "from __main__ import d").repeat(number=100)
[13.776750087738037, 12.756224155426025, 12.697851181030273]

A four second difference on a hundred iterations of the loop _is_
something worth worrying about. Fortunately, Python makes it no worry at
all: just iterate on the dict regardless of whether your dict is small or
large, and you won't go wrong.
--
Steven.
Aug 26 '07 #4

This thread has been closed and replies have been disabled. Please start a new discussion.

Similar topics

8
by: Steven Bethard | last post by:
Sorry if this is a repost -- it didn't appear for me the first time. So I was looking at the Language Reference's discussion about emulating container types, and nowhere in it does it mention...
57
by: Egor Bolonev | last post by:
why functions created with lambda forms cannot contain statements? how to get unnamed function with statements?
90
by: Christoph Zwerschke | last post by:
Ok, the answer is easy: For historical reasons - built-in sets exist only since Python 2.4. Anyway, I was thinking about whether it would be possible and desirable to change the old behavior in...
14
by: vatamane | last post by:
This has been bothering me for a while. Just want to find out if it just me or perhaps others have thought of this too: Why shouldn't the keyset of a dictionary be represented as a set instead of a...
24
by: kdotsky | last post by:
Hello, I am using some very large dictionaries with keys that are long strings (urls). For a large dictionary these keys start to take up a significant amount of memory. I do not need access to...
1
by: bearophileHUGS | last post by:
The PEP 3100: http://www.python.org/dev/peps/pep-3100/ says: Return iterators instead of lists where appropriate for atomic type methods (e.g. dict.keys(), dict.values(), dict.items(), etc.);...
13
by: Nader | last post by:
Hello, I have a dictionary and will get all keys which have the same values. d = {('a' : 1), ('b' : 3), ('c' : 2),('d' : 3),('e' : 1),('f' : 4)} I will something as : d.keys(where their...
10
by: ++imanshu | last post by:
Hi, Wouldn't it be nicer to have 'in' return values (or keys) for both arrays and dictionaries. Arrays and Dictionaries looked so similar in Python until I learned this difference. Thanks,...
12
by: Florian Brucker | last post by:
Hi everybody! Given a dictionary, I want to create a clustered version of it, collecting keys that have the same value: {1:, 2:, 3:} That is, generate a new dict which holds for each value...
0
by: Charles Arthur | last post by:
How do i turn on java script on a villaon, callus and itel keypad mobile phone
0
by: ryjfgjl | last post by:
In our work, we often receive Excel tables with data in the same format. If we want to analyze these data, it can be difficult to analyze them because the data is spread across multiple Excel files...
0
by: emmanuelkatto | last post by:
Hi All, I am Emmanuel katto from Uganda. I want to ask what challenges you've faced while migrating a website to cloud. Please let me know. Thanks! Emmanuel
0
BarryA
by: BarryA | last post by:
What are the essential steps and strategies outlined in the Data Structures and Algorithms (DSA) roadmap for aspiring data scientists? How can individuals effectively utilize this roadmap to progress...
0
marktang
by: marktang | last post by:
ONU (Optical Network Unit) is one of the key components for providing high-speed Internet services. Its primary function is to act as an endpoint device located at the user's premises. However,...
0
jinu1996
by: jinu1996 | last post by:
In today's digital age, having a compelling online presence is paramount for businesses aiming to thrive in a competitive landscape. At the heart of this digital strategy lies an intricately woven...
0
by: Hystou | last post by:
Overview: Windows 11 and 10 have less user interface control over operating system update behaviour than previous versions of Windows. In Windows 11 and 10, there is no way to turn off the Windows...
0
tracyyun
by: tracyyun | last post by:
Dear forum friends, With the development of smart home technology, a variety of wireless communication protocols have appeared on the market, such as Zigbee, Z-Wave, Wi-Fi, Bluetooth, etc. Each...
0
agi2029
by: agi2029 | last post by:
Let's talk about the concept of autonomous AI software engineers and no-code agents. These AIs are designed to manage the entire lifecycle of a software development project—planning, coding, testing,...

By using Bytes.com and it's services, you agree to our Privacy Policy and Terms of Use.

To disable or enable advertisements and analytics tracking please visit the manage ads & tracking page.