active questions tagged dictionary - Stack Overflowmost recent 30 from stackoverflow.com2009-12-17T11:10:26Zhttp://stackoverflow.com/feeds/tag/dictionaryhttp://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/1920864/when-does-a-dictionary-throw-an-indexoutofrangeexception-on-add-or-containskey1When does a dictionary throw an IndexOutOfRangeException on Add or ContainsKey ?driis2009-12-17T10:42:16Z2009-12-17T11:05:38Z
<p>On a busy ASP .NET website, I have a Dictionary, which acts as a cache, basically storing key/value pairs for later retrieval.</p>
<p>On high load, the Dictionary some times get into a state, where it always throws an IndexOutOfRangeException whenever i call the ContainsKey or Add method. The exception happens inside the private FindEntry method.</p>
<p>I am suspecting that this might be due to a synchronization issue, but I am not sure.</p>
<p>Can anyone tell me under which circumstances this can happen ? My goal is to gather enough information so that I can reproduce the issue in the dev environment. </p>
http://stackoverflow.com/questions/1918456/what-is-a-hashtable-dictionary-implementation-for-python-that-doesnt-store-the-k2What is a hashtable/dictionary implementation for Python that doesn't store the keys?unknown (google)2009-12-16T23:06:21Z2009-12-17T05:58:20Z
<p>I'm storing millions, possibly billions of 4 byte values in a hashtable and I don't want to store any of the keys. I expect that only the hashes of the keys and the values will have to be stored. This has to be fast and all kept in RAM. The entries would still be looked up with the key, unlike set()'s.</p>
<p>What is an implementation of this for Python? Is there a name for this?</p>
<p>Yes, collisions are allowed and can be ignored.</p>
<p>(I can make an exception for collisions, the key can be stored for those. Alternatively, collisions can just overwrite the previously stored value.)</p>
http://stackoverflow.com/questions/1919081/unique-set-of-strings-in-c0Unique set of strings in C#tbischel2009-12-17T02:11:57Z2009-12-17T02:16:28Z
<p>I have a list of strings, I need to be able to simply probe if a new string is in the table or not. When the list is large, testing a simple list directly is pretty inefficient... so typically I use a Dictionary to get constant lookup speeds, although I don't actually care about the value. This seems like a misuse of a dictionary, so I'm wondering what other approaches I could take.</p>
<p>Is there a better way to do hit testing that I am unaware of?</p>
http://stackoverflow.com/questions/1911273/is-there-a-better-way-to-compare-dictionary-values0Is there a better way to compare dictionary valuesJaelebi2009-12-15T23:39:12Z2009-12-16T01:47:15Z
<p>I am currently using the following function to compare dictionary values. Is there a faster or better way to do it?</p>
<pre><code>match = True
for keys in dict1:
if dict1[keys] != dict2[keys]:
match = False
print keys
print dict1[keys],
print '->' ,
print dict2[keys]
</code></pre>
<p>Edit: Both the dicts contain the same keys.</p>
http://stackoverflow.com/questions/1909079/android-dictionary-autocompletion0android dictionary autocompletion [closed]Arutha2009-12-15T17:34:16Z2009-12-15T17:40:43Z
<p>How can I hide the suggested words or turn off auto complete for the
virtual keyboard? Thanks ;)</p>
http://stackoverflow.com/questions/1903216/should-i-be-concerned-about-net-dictionary-speed3Should I be concerned about .NET dictionary speed?earlz2009-12-14T20:18:00Z2009-12-15T00:56:16Z
<p>Hello, I will be creating a project that will use dictionary lookups and inserts quite a bit. Is this something to be concerned about? </p>
<p>Also, if I do benchmarking and such and it is really bad, then what is the best way of replacing dictionary with something else? Would using an array with "hashed" keys even be faster? That wouldn't help on insert time though will it? </p>
<p>Also, I don't think I'm micro-optimizing because this really will be a significant part of code on a production server, so if this takes an extra 100ms to complete, then we will be looking for new ways to handle this. </p>
http://stackoverflow.com/questions/1903901/how-can-i-access-my-applications-images-that-are-in-my-resources0How can I access my applications images that are in my resources?Papuccino12009-12-14T22:16:47Z2009-12-14T22:28:33Z
<p>I'm going to briefly explain what I want my program to do.</p>
<p>I have a lot of Images on my form and I want the image source to change on MouseEnter event.</p>
<p>So, if a user moves the mouse over the button, I'd like the button to appear to be glowing. Of course I've made two images for the Image control. One normal, and one glowing. I'm trying to make a single event on mouseEnter for all of the images because I don't want to pollute my code with 60+ events all essentially doing the same thing.</p>
<p>Someone suggested I do something like this:</p>
<pre><code>void HeroMouseEnter(object sender, EventArgs e)
{
((PictureBox)sender).Image = GetImage(((PictureBox)sender).Name)
}
</code></pre>
<p>Honestly, this would work <strong>exactly</strong> how I need it to. But I'm a bit confused is about the GetImage() method.</p>
<p>How exactly would I code this? All of my images, both the glowing and non glowing ones are already added to my resources. How would I <em>summon</em> them according to the PictureBox's name?</p>
<p>I tried making a dictionary with the key being the name of the pictureBox and the value being the resource file, but no dice.</p>
<p>Please help!</p>
http://stackoverflow.com/questions/1903463/tooltip-in-gridview-using-dictionary-method0Tooltip in gridview using dictionary methodMrDean2009-12-14T21:00:03Z2009-12-14T21:06:49Z
<p>Evening all.</p>
<p>I have the following code that I need looking into - basically I'm clutching at straws here. I have a gridview that I would like to assign tooltips to.</p>
<pre><code> protected void GridView1_RowDataBound(object sender, GridViewRowEventArgs e)
{
if (e.Row.RowType == DataControlRowType.Header)
{
foreach (TableCell cell in e.Row.Cells)
{
foreach (System.Web.UI.Control ctl in cell.Controls)
{
if (ctl.GetType().ToString().Contains("DataControlLinkButton"))
{
Dictionary<String, String> headerTooltips = new Dictionary<String, String>();
headerTooltips["Product ID"] = "A unique product ID";
headerTooltips["Product Description"] = "Description of product";
String headerText = cell.Text;
cell.Attributes.Add("title", headerTooltips[headerText]);
}
}
}
}
}
</code></pre>
<p>Essentially what I am trying to achieve is a tool tip that appears by each column heading (i.e. Product ID and Product Description.)</p>
<p>However, when I use the above code, I receive the following error message "The given key was not present in the dictionary." This appears on the </p>
<pre><code>cell.Attributes.Add("title", headerTooltips[headerText]);
</code></pre>
<p>line.</p>
<p>Can someone point out the error in my ways? Thank you for any help or suggestions.</p>
http://stackoverflow.com/questions/1597764/is-there-a-better-pythonic-way-to-do-this8Is there a better, pythonic way to do this?Schitti2009-10-20T22:58:28Z2009-12-14T19:02:02Z
<p>This is my first python program - </p>
<p>Requirement: Read a file consisting of {adId UserId} in each line. For each adId, print the number of unique userIds.</p>
<p>Here is my code, put together from reading the python docs. Could you give me feedback on how I can write this in more python-ish way?</p>
<p>CODE :</p>
<pre><code>import csv
adDict = {}
reader = csv.reader(open("some.csv"), delimiter=' ')
for row in reader:
adId = row[0]
userId = row[1]
if ( adId in adDict ):
adDict[adId].add(userId)
else:
adDict[adId] = set(userId)
for key, value in adDict.items():
print (key, ',' , len(value))
</code></pre>
<p>Thanks.</p>
http://stackoverflow.com/questions/1901866/how-can-i-create-a-single-event-handler-for-many-many-pictureboxes-on-mouseenter0How can I create a single event handler for many many pictureBoxes on MouseEnter?Papuccino12009-12-14T16:18:44Z2009-12-14T17:39:56Z
<p>My plan is to create a single event that will go:</p>
<p>"<em>Ok, the mouse entered a registered pictureBox, load X picture onto it according the name of sender.</em>"</p>
<p>What is the best way to handle this?</p>
<p>Should I create a dictionary with the name as key, and the location of the picture resource as the value?</p>
<p>Here's what I have so far:</p>
<pre><code>private void SetPictureBoxEvents()
{
Andromeda.MouseEnter += new EventHandler(HeroMouseEnter);
Engineer.MouseEnter += new EventHandler(HeroMouseEnter);
Nighthound.MouseEnter += new EventHandler(HeroMouseEnter);
Swiftblade.MouseEnter += new EventHandler(HeroMouseEnter);
}
void HeroMouseEnter(object sender, EventArgs e)
{
//My picture box is named Andromeda. I'm going use that name
// as a key is a Dictionary and pull the picture according to the name.
//This is to make a generic event to handle all movements.
//Any help?
// ((PictureBox)sender).Image =
}
</code></pre>
<p>How could I also create a dictionary for image locations in my Resources.:</p>
<pre><code>Dictionary<string, TestProject.Properties.Resources> HeroList
= new Dictionary<string, TestProject.Properties.Resources>();
</code></pre>
<p>This isn't working.</p>
http://stackoverflow.com/questions/1897623/unpacking-a-passed-dictionary-into-the-functions-name-space-in-python0"unpacking" a passed dictionary into the function's name space in Python?Drew Wagner2009-12-13T20:24:33Z2009-12-13T23:12:42Z
<p>In the work I do, I often have parameters that I need to group into subsets for convenience:</p>
<pre><code>d1 = {'x':1,'y':2}
d2 = {'a':3,'b':4}
</code></pre>
<p>I do this by passing in multiple dictionaries. Most of the time I use the passed dictionary directly, i.e.:</p>
<pre><code>def f(d1,d2):
for k in d1:
blah( d1[k] )
</code></pre>
<p>In some functions I need to access the variables directly, and things become cumbersome; I really want those variables in the local name space. I want to be able to do something like:</p>
<pre><code>def f(d1,d2)
locals().update(d1)
blah(x)
blah(y)
</code></pre>
<p>but the updates to the dictionary that locals() returns aren't guaranteed to actually update the namespace.</p>
<p>Here's the obvious manual way:</p>
<pre><code>def f(d1,d2):
x,y,a,b = d1['x'],d1['y'],d2['a'],d2['b']
blah(x)
return {'x':x,'y':y}, {'a':a,'b':b}
</code></pre>
<p>This results in three repetitions of the parameter list per function. This can be automated with a decorator:</p>
<pre><code>def unpack_and_repack(f):
def f_new(d1, d2):
x,y,a,b = f(d1['x'],d1['y'],d2['a'],d3['b'])
return {'x':x,'y':y}, {'a':a,'b':b}
return f_new
@unpack
def f(x,y,a,b):
blah(x)
blah(y)
return x,y,a,b
</code></pre>
<p>This results in three repetitions for the decorator, plus two per function, so it's better if you have a lot of functions.</p>
<p>Is there a better way? Maybe something using eval? Thanks!</p>
http://stackoverflow.com/questions/1892802/need-free-english-dictionary-or-corpus-ultimately-for-a-mysql-database2Need free English dictionary or Corpus, ultimately for a MySQL databaseChris2009-12-12T08:47:28Z2009-12-12T09:27:44Z
<p>Hey there,</p>
<p>I'm trying to find a free downloadable dictionary (or Corpus might be the better word) which I can import into MySQL. I need to words to have the type (noun, verb, adjective) associated with them. Any tips on where I can find one? I found one several years ago that worked nicely, but I no longer have it around.</p>
<p>Thanks!
Chris</p>
http://stackoverflow.com/questions/1890876/how-would-i-get-the-corresponding-key-for-the-maximum-value-in-a-dictionaryof-so0How would I get the corresponding Key for the maximum Value in a Dictionary(Of SomeEnum, Integer) using LINQ?Cory Larson2009-12-11T21:07:36Z2009-12-11T21:28:38Z
<p>I did a fair bit of searching for an answer to this question, but no example that I could find got all the way to where I need to be.</p>
<p>I've got a <code>Dictionary(Of SomeEnum, Integer)</code> that gets filled up while looping through some objects that have a property with type <code>SomeEnum</code>. Once the loop is done, I want the <code>SomeEnum</code> type that occurs the most in the list of objects. I also need the other counts as well for display purposes, hence the usage of a simple <code>Dictionary(Of K, V)</code>.</p>
<p>I am looking for a LINQ query to give me back the <code>SomeEnum</code> key that occurs the most by looking at each keys number of occurences. Or perhaps there's an easier way of going about it.</p>
<p>I could do this:</p>
<pre><code> Return (From kvp As KeyValuePair(Of SomeEnum, Integer) _
In Me.MyObjects Order By kvp.Value Descending _
Select kvp).First().Key
</code></pre>
<p>But wouldn't the sorting be a more expensive operation than trying to wiggle Max() in there somehow? I'm a LINQ n00b, so any feedback would be greatly appreciated.</p>
http://stackoverflow.com/questions/1889385/list-of-dictionaries-in-a-dictionary-in-python-1List of dictionaries, in a dictionary - in PythonTerry Felkrow2009-12-11T16:58:44Z2009-12-11T20:09:19Z
<p>I have a case where I need to construct following structure <strong>programmatically</strong> (yes I am aware of .setdefault and defaultdict but I can not get what I want)</p>
<p>I basically need a dictionary, with a dictionary of dictionaries created within the loop.
At the beginning the structure is completely blank.</p>
<p>structure sample (please note, I want to create an array that has this structure in the code!)</p>
<pre><code>RULE = {
'hard_failure': {
4514 : {
'f_expr' = 'ABC',
'c_expr' = 'XF0',
}
}
}
</code></pre>
<p>pseudo code that needs to create this:</p>
<pre><code>...
self.rules = {}
for row in rows:
a = 'hard_failure'
b = row[0] # 4514
c = row[1] # ABC
d = row[2] # XF0
# Universe collapse right after
self.rules = ????
...
</code></pre>
<p>The code above is obviously not working since I dont know how to do it!</p>
http://stackoverflow.com/questions/1888910/how-to-sort-arrays-in-dictionary0How to Sort Arrays in Dictionary?Dexodro2009-12-11T15:43:29Z2009-12-11T17:56:21Z
<p>I'm currently writing a program in Python to track statistics on video games. An example of the dictionary I'm using to track the scores :</p>
<pre><code>ten = 1
sec = 9
fir = 10
thi5 = 6
sec5 = 8
games = {
'adom': [ten+fir+sec+sec5, "Ancient Domain of Mysteries"],
'nethack': [fir+fir+fir+sec+thi5, "Nethack"]
}
</code></pre>
<p>Right now, I'm going about this the hard way, and making a big long list of nested ifs, but I don't think that's the proper way to go about it. I was trying to figure out a way to sort the dictionary, via the arrays, and then, finding a way to display the first ten that pop up... instead of having to work deep in the if statements.</p>
<p>So... basically, my question is : Do you have any ideas that I could use to about making this easier, instead of wayyyy, way harder?</p>
<p>===== EDIT ====</p>
<p>the ten+fir produces numbers. I want to find a way to go about sorting the lists (I lack the knowledge of proper terminology) to go by the number (basically, whichever ones have the highest number in the first part of the array go first.</p>
<p>Here's an example of my current way of going about it (though, it's incomplete, due to it being very tiresome : <a href="http://paste2.org/p/557012" rel="nofollow">Example Nests (paste2)</a> (let's try this one?)</p>
<p>==== SECOND EDIT ====</p>
<p>In case someone doesn't see my comment below :</p>
<p>ten, fir, et cetera - these are just variables for scores. Basically, it goes from a top ten list into a variable number.
ten = 1, nin = 2, fir = 10, fir5 = 10, sec5 = 8, sec = 9...
so : <strong>'adom': [ten+fir+sec+sec5, "Ancient Domain of Mysteries"]</strong> actually registers as : <strong>'adom': [1+10+9+8, "Ancient Domain of Mysteries"]</strong> , which ends up looking like :</p>
<p><strong>'adom': [28, "Ancient Domain of Mysteries"]</strong></p>
<p>So, basically, if I ended up doing the "top two" out of my example, it'd be :</p>
<blockquote>
<p>((1)) Nethack (48) </p>
<p>((2)) ADOM (28)</p>
</blockquote>
<p>I'd write an actual number, but I'm thinking of changing a few things up, so the numbers might be a touch different, and I wouldn't want to rewrite it.</p>
<p>== THIRD (AND HOPEFULLY THE FINAL) EDIT ==</p>
<p>Fixed my original code example.</p>
http://stackoverflow.com/questions/1887969/keynotfoundexception-but-not-when-debugging0KeyNotFoundException, but not when debugging.Matthew Abbott2009-12-11T13:09:30Z2009-12-11T13:52:08Z
<p>I've been building an extensions library, and I've utilised a great extension method found at <a href="http://www.extensionmethod.net" rel="nofollow">http://www.extensionmethod.net</a> for inclusion. In my unit test (using NUnit 1.5.2), I've come across an interesting issue. Firstly, lets look at the code:</p>
<pre><code> /// <summary>
/// Groups and aggregates the sequence of elements.
/// </summary>
/// <typeparam name="TSource">The source type in the sequence.</typeparam>
/// <typeparam name="TFirstKey">The first key type to group by.</typeparam>
/// <typeparam name="TSecondKey">The second key type to rotate by.</typeparam>
/// <typeparam name="TValue">The type of value that will be aggregated.</typeparam>
/// <param name="source">The source sequence.</param>
/// <param name="firstKeySelector">The first key selector.</param>
/// <param name="secondKeySelector">The second key selector.</param>
/// <param name="aggregator">The aggregating function.</param>
/// <returns>A <see cref="Dictionary{TKey,TValue}" /> representing the pivoted data.</returns>
public static Dictionary<TFirstKey, Dictionary<TSecondKey, TValue>> Pivot<TSource, TFirstKey, TSecondKey, TValue>
(this IEnumerable<TSource> source,
Func<TSource, TFirstKey> firstKeySelector,
Func<TSource, TSecondKey> secondKeySelector,
Func<IEnumerable<TSource>, TValue> aggregator)
{
return source.GroupBy(firstKeySelector).Select(
x => new
{
X = x.Key,
Y = x.GroupBy(secondKeySelector).Select(
z => new { Z = z.Key, V = aggregator(z) }).ToDictionary(e => e.Z, o => o.V)
}).ToDictionary(e => e.X, o => o.Y);
}
</code></pre>
<p>What the function does, is takes in an IEnumerable of type TSource, and pivots the items into a dictionary, and aggregates the items using whatever function you define. My sample set of data is an array of people (in a type called Person).</p>
<pre><code> private static readonly Person[] people =
new[]
{
new Person { Forename = "Matt", Surname = "Someone", Email = "matthew@somewhere.com", Age = 25, IsMale = true },
new Person { Forename = "Chris", Surname = "Someone", Email = "chris@somewhere.com", Age = 28, IsMale = false },
new Person { Forename = "Andy", Surname = "Someone", Email = "andy@somewhere.com", Age = 30, IsMale = true },
new Person { Forename = "Joel", Surname = "Someone", Email = "joel@somewhere.com", Age = 30, IsMale = true },
new Person { Forename = "Paul", Surname = "Someone", Email = "paul@somewhere.com", Age = 30, IsMale = true }
};
</code></pre>
<p>And lastly, we do our test:</p>
<pre><code> /// <summary>
/// Performs a pivot function on the sample array.
/// </summary>
[Test]
public void Pivot()
{
/* Our sample data is an array of Person instances.
* Let's organise it first by gender (IsMale), and then by Age.
* Finally, we'll return a count. */
var organised = people.Pivot(p => p.IsMale, p => p.Age, l => l.Count());
Assert.IsTrue(organised.Count == 2, "More than two genders were returned.");
Assert.IsTrue(organised[true].Count == 2, "More than two ages were returned for males.");
Assert.IsTrue(organised[false].Count == 1, "More than 1 age was returned for females.");
int count = organised[true][30];
Assert.IsTrue(count == 3, "There are more than 3 male 30 year olds in our data.");
}
</code></pre>
<p>What is being returned in this test case, is a Dictionary> instance. The boolean is a result of the IsMale group by, and in our sample data, correctly returns 2 items, true and false. The inner dictionary has a key of the age, and a value of the count. In our test data, organised[true][30] reflects all males of the age of 30 in the set. </p>
<p>The problem is not the pivot function itself, but for some reason, when we run this through both the NUnit Test Runner, and Resharper's Unit Test Runner, the test fails, reporting a KeyNotFoundException for the line "int count = organised[true][30];". When we debug this test, it correctly returns the value 3 (as in our sample data, we have 3 males of the age 30).</p>
<p>Any thoughts?</p>
http://stackoverflow.com/questions/1043922/wpf-textbox-custom-dictionary-support3WPF TextBox Custom Dictionary SupportTom Allen2009-06-25T13:26:58Z2009-12-11T10:02:31Z
<p>Has anyone found a workaround yet for getting custom dictionary support working for the built in spellchecking on WPF TextBoxes/RichTextBoxes? We've been probing the spelling stuff with reflector hoping to find where the dictionary entries are coming from, but it's looking very much like it's going to be a COM object....</p>
<p>I know it's not currently supported and that Microsoft were looking into supporting it in a future release, but that was quite a while ago and I can't seem to find any recent news about it.</p>
<p>Clutching at staws, I've posted a suggestion up on Connect: </p>
<p><a href="https://connect.microsoft.com/VisualStudio/feedback/ViewFeedback.aspx?FeedbackID=470233" rel="nofollow">https://connect.microsoft.com/VisualStudio/feedback/ViewFeedback.aspx?FeedbackID=470233</a></p>
http://stackoverflow.com/questions/1879081/order-a-list-of-files-by-size-via-python1Order a list of files by size via pythonNazarius Kappertaal2009-12-10T06:42:13Z2009-12-10T07:42:12Z
<p>Example dump from the list of a directory:</p>
<pre><code>hello:3.1 GB
world:1.2 MB
foo:956.2 KB
</code></pre>
<p>The above list is in the format of FILE:VALUE UNIT. How would one go about ordering each line above according to file size?</p>
<p>I thought perhaps to parse each line for the unit via the pattern ":VALUE UNIT" (or somehow use the delimiter) then run it through the <a href="http://pastie.org/736888" rel="nofollow">ConvertAll engine</a>, receive the size off each value in bytes, hash it with the rest of the line (filenames), then order the resulting dictionary pairs via size.</p>
<p>Trouble is, I have no idea about pattern matching. But I see that you can sort a <a href="http://code.activestate.com/recipes/52306/" rel="nofollow">dictionary</a></p>
<p>If there is a better direction in which to solve this problem, please let me know.</p>
<p><hr></p>
<p><strong>EDIT:</strong></p>
<p>The list that I had was actually in a file. Taking inspiration from answer of the (awesome) <a href="http://stackoverflow.com/users/95810/alex-martelli">Alex Martelli</a>, I've written up the following code that extracts from one file, orders it and writes to another.</p>
<pre><code>#!/usr/bin/env python
sourceFile = open("SOURCE_FILE_HERE", "r")
allLines = sourceFile.readlines()
sourceFile.close()
print "Reading the entire file into a list."
cleanLines = []
for line in allLines:
cleanLines.append(line.rstrip())
mult = dict(KB=2**10, MB=2**20, GB=2**30)
def getsize(aline):
fn, size = aline.split(':', 1)
value, unit = size.split(' ')
multiplier = mult[unit]
return float(value) * multiplier
print "Writing sorted list to file."
cleanLines.sort(key=getsize)
writeLines = open("WRITE_OUT_FILE_HERE",'a')
for line in cleanLines:
writeLines.write(line+"\n")
writeLines.close()
</code></pre>
http://stackoverflow.com/questions/1877574/c-creating-a-list-from-an-existing-dictionary2C# - Creating a List from an existing DictionaryAJ Ravindiran2009-12-09T23:08:40Z2009-12-09T23:17:50Z
<p>Hello,</p>
<p>I have a <code>Dictionary<></code> collection that contains characters. The collection has items added and removed constantly by multiple threads. Would initializing a new <code>List<></code> collection using the dictionary need a lock?</p>
<p>Example code:</p>
<pre><code>List<Character> charsToUpdate = new List<Character>(this.manager.characters.Values);
</code></pre>
<p>Thanks in advanced.</p>
http://stackoverflow.com/questions/1875932/deleting-key-value-from-list-of-dictionaries-using-lambda-and-map1Deleting key/value from list of dictionaries using lambda and mapwebley2009-12-09T18:40:52Z2009-12-09T18:58:56Z
<p>I have a list of dictionaries that have the same keys within eg:</p>
<pre><code>[{k1:'foo', k2:'bar', k3...k4....}, {k1:'foo2', k2:'bar2', k3...k4....}, ....]
</code></pre>
<p>I'm trying to delete k1 from all dictionaries within the list.</p>
<p>I tried</p>
<pre><code>map(lambda x: del x['k1'], list)
</code></pre>
<p>but that gave me a syntax error. Where have I gone wrong?</p>
http://stackoverflow.com/questions/1872329/storing-python-dictionary-entries-in-the-order-they-are-pushed2Storing Python dictionary entries in the order they are pushedArrieta2009-12-09T08:04:00Z2009-12-09T11:10:18Z
<p>Fellows:</p>
<p>A Python dictionary is stored in no particular order (mappings have no order), e.g.,</p>
<pre><code>>>> myDict = {'first':'uno','second':'dos','third':'tres'}
myDict = {'first':'uno','second':'dos','third':'tres'}
>>> myDict
myDict
{'second': 'dos', 'third': 'tres', 'first': 'uno'}
</code></pre>
<p>While it is possible to retrieve a sorted list or tuple from a dictionary, I wonder if it is possible to make a dictionary store the items in the order they are passed to it, in the previous example this would mean having the internal ordering as <code>{'first':'uno','second':'dos','third':'tres'}</code> and no different.</p>
<p>I need this because I am using the dictionary to store the values as I read them from a configuration file; once read and processed (the values are altered), they have to be written to a new configuration file in the same order as they were read (this order is not alphabetical nor numerical).</p>
<p>Any thoughts?</p>
<p><strong>Edit</strong>:
Please notice that I am not looking for secondary ways to retrieve the order (like lists), but of ways to make a dictionary be ordered in itself (as it will be in upcoming versions of Python).</p>
http://stackoverflow.com/questions/643361/how-to-manually-add-data-to-a-datagrid-in-silverlight0How to manually add data to a DataGrid in SilverlightSmith3252009-03-13T15:51:05Z2009-12-09T06:21:28Z
<p>I have found that datagrid columns can be dynamically created and bound in Silverlight. However I can't find a way to bind data to those columns.</p>
<p>If I try to bind any type of object with AutoGenerateColumns = true, then the names of each property of the object get added as columns and the object information is displayed in the grid in addition to the existing columns which show no data.</p>
<p>If I apply a list with AutoGenerateColumns = false, then i still get rows to show up in the table but no data in the columns.</p>
<p>I do not want to create a specific object for each case that i need to display data in the datagird.</p>
<p>I do not want to have my column names limited to the names of properties, e.g. names with out spaces.</p>
<p>I want to be able to bind a list or a dictionary array to the data grid. I also want to be able to control what data shows up in what columns.</p>
http://stackoverflow.com/questions/1871296/dictionary-same-value-different-key0Dictionary (same value, different key)LB2009-12-09T02:43:55Z2009-12-09T03:00:50Z
<p>Newbie Alert:</p>
<p>I'm new to Python and when I'm basically adding values to a dict, I find that when I'm printing the whole dictionary, I get the same value of something for all keys of a specific key.</p>
<p>Seems like a pointer issue?</p>
<p>Here's a snippet when using the event-based XML parser (SAX):</p>
<p>Basically with every end element of "row", I'm storing the element by it's key: self.Id, where self is the element.</p>
<pre><code>def endElement(self, name):
if name == "row":
self.mapping[self.Id] = self
print "Storing...: " + self.DisplayName + " at Id: " + self.Id
</code></pre>
http://stackoverflow.com/questions/1871319/in-memcached-you-can-put-a-list-as-a-value-can-you-put-a-list-in-beanstalkd0In memcached, you can put a List as a value. Can you put a list in beanstalkd?alex2009-12-09T02:51:51Z2009-12-09T02:51:51Z
<p>Actually, I would like to use this for logging.
I want to put a dictionary into beanstalkd.</p>
<p>Everytime someone goes into my website, I want to put a dictionary into beanstalkd, and then every night, I want a script that will get all the jobs and stick them in the database.</p>
<p>THis will make it fast and easy.</p>
http://stackoverflow.com/questions/1869452/a-faster-replacement-to-the-dictionarytkey-tvalue0A faster replacement to the Dictionary<TKey, TValue>Alon2009-12-08T20:01:06Z2009-12-08T21:19:04Z
<p>I need a fast replacement for the <code>System.Collections.Generic.Dictionary<TKey, TValue></code>. My application should be <strong>really</strong> fast. So, the replacement should support:</p>
<ul>
<li>Generics</li>
<li>Add</li>
<li>Get</li>
<li>Contains</li>
</ul>
<p>... and that's it. I don't need any support in LINQ or anything. And it should be <strong>fast</strong>.</p>
<p>A simple code like:</p>
<pre><code>Stopwatch stopWatch = Stopwatch.StartNew();
Dictionary<string, string> dictionary = new Dictionary<string, string>();
dictionary.Add("fieldName", "fieldValue");
dictionary.Add("Title", "fieldVaaaaaaaaaaaaaaaaalue");
Console.WriteLine(stopWatch.Elapsed);
</code></pre>
<p>... prints 00:00:00.0001274, which is <em>alot</em> of time for me, because my application is doing many other things, some of them from old slow libraries that I must to use and are not dependent on me.</p>
<p>Any ideas on how to implement a faster one?</p>
<p>Thank you.</p>
http://stackoverflow.com/questions/24515/bad-words-filter4"bad words" filterila2008-08-23T19:17:34Z2009-12-08T18:25:33Z
<p>Not very technical, but... I have to implement a bad words filter in a new site we are developing. So I need a "good" bad words list to feed my db with... any hint / direction? Looking around with google I <a href="http://urbanoalvarez.es/blog/2008/04/04/bad-words-list/" rel="nofollow">found this</a> one, and it's a start, but nothing more.</p>
<p>Yes, I know that this kind of filters are easily escaped... but the client will is the client will !!! :-) </p>
<p>The site will have to filter out both english and italian words, but for italian I can ask my colleagues to help me with a community-built list of "parolacce" :-) - an email will do. </p>
<p>Thanks for any help.</p>
http://stackoverflow.com/questions/1867861/python-dictionary-keep-keys-values-in-same-order-as-declared0Python dictionary, keep keys/values in same order as declaredBrandon2009-12-08T15:53:35Z2009-12-08T16:18:17Z
<p>Hi, new to Python and had a question about dictionaries. I have a dictionary that I declared in a particular order and want to keep it in that order all the time. The keys/values can't really be kept in order based on their value, I just want it in the order that I declared it.</p>
<p>So if I have the dictionary:</p>
<pre><code>d = {'ac':33, 'gw':20, 'ap':102, 'za':321, 'bs':10}
</code></pre>
<p>It isn't in that order if I view it or iterate through it, is there any way to make sure Python will keep the explicit order that I declared the keys/values in?</p>
<p>Using Python 2.6</p>
http://stackoverflow.com/questions/1858917/is-it-safe-to-cast-generics-in-delphi2Is it safe to cast generics in Delphi?mjustin2009-12-07T09:43:12Z2009-12-07T13:55:05Z
<p>I need to implement a function which returns a TDictionary, without specifying the exact types. The returned value could be a <code>TDictionary<string,Integer></code>, <code>TDictionary<string,string></code> or <code>TDictionary<string,Boolean></code></p>
<p>Could I declare the function with TDictionary as result parameter:</p>
<pre><code>function GetMap: TDictionary;
</code></pre>
<p>and then cast the return value:</p>
<pre><code>type
TMyMapType: TDictionary<string,Integer>;
var
MyMap: TMyMapType:
begin
...
MyMap := GetMap as TMyMapType;
...
end;
</code></pre>
<p>Edit: found that there seems to be no way to declare a 'generic' result parameter type which would be type compatible with my three dictionary types. </p>
<p>It looks like I need something like </p>
<pre><code>type
TMyMapType: TDictionary<string, ?>;
</code></pre>
<p>which is not (yet?) possible in the Object Pascal language. In Java it would be something like this:</p>
<pre><code>static Map<String, Integer>getIntegerMap() {
Map<String, Integer> result = new TreeMap<String, Integer>() {};
result.put("foo", Integer.valueOf(42));
return result;
}
static Map<String, ?> getMap() {
return getIntegerMap();
}
public static void main(String[] args) {
System.out.println(getMap().get("foo"));
}
</code></pre>
http://stackoverflow.com/questions/1859116/loose-dictionary-need-advice1Loose dictionary, need adviceCaptain Comic2009-12-07T10:23:42Z2009-12-07T11:04:49Z
<p>I need to create a dictinary where key is string and value is Object.
But I don't want exact match of the key with user provided string. Instead I want to key to contain a part of string. Let me explain by example</p>
<p>If there is an entry in dictionary under key "Johnson" I want to be able to find value
given input strings "John", "Jo". Also I want to be able to extract several values that match
input string by given condition. For instance if there entries "John A" and "John B" I want
to to have functionality like FindFirst that would return iterator to first matched value.</p>
<p>Ideally I would prefer use existing System.Collections.Generic.Dictionary
possibly deriving a new class and overriding some methods</p>
http://stackoverflow.com/questions/1858857/comparing-user-input-integers-to-dictionary-values-python1Comparing user input integers to dictionary values? (Python)WorkingStudent092009-12-07T09:33:27Z2009-12-07T10:40:42Z
<p>Hey everybody,</p>
<p>I'm a python noob and I'm trying to write a program that will show a user a list of phone numbers called greater than X times (X input by users). I've got the program to successfully read in the duplicates and count them (the numbers are stored in a dictionary where {phoneNumber : numberOfTimesCalled}), but I need to compare the user input, an integer, with the value in the dictionary and then print the phone numbers that were called X or more times. This is my code thus far:</p>
<pre><code> import fileinput
dupNumberCount = {}
phoneNumLog = list()
for line in fileinput.input(['PhoneLog.csv']):
phoneNumLog.append(line.split(',')[1])
userInput3 = input("Numbers called greater than X times: ")
for i in phoneNumLog:
if i not in dupNumberCount:
dupNumberCount[i] = 0
dupNumberCount[i] += 1
print(dupNumberCount.values())
userInput = input("So you can view program in command line when program is finished")
</code></pre>
<p>Basically, I can't figure out how to convert the dictionary values to integers, compare the user input integer to that value, and print out the phone number that corresponds to the dictionary value. Any help GREATLY appreciated!</p>
<p>By the way, my dictionary has about 10,000 keys:values that are organized like this:</p>
<pre><code>'6627793661': 1, '6724734762': 1, '1908262401': 1, '7510957407': 1
</code></pre>
<p>Hopefully I've given enough information for you all to help me out with the program!</p>