About 50 results
Open links in new tab
  1. Understanding .get() method in Python - Stack Overflow

    Here the get method finds a key entry for 'e' and finds its value which is 1. We add this to the other 1 in characters.get (character, 0) + 1 and get 2 as result.

  2. Understanding dictionary.get in Python - Stack Overflow

    Sep 14, 2016 · As you have found, get just gets the value corresponding to a given key. sorted will iterate through the iterable it's passed. In this case that iterable is a dict, and iterating through a dict …

  3. Why doesn't list have safe "get" method like dictionary?

    172 Ultimately it probably doesn't have a safe .get method because a dict is an associative collection (values are associated with names) where it is inefficient to check if a key is present (and return its …

  4. javascript - ajax jquery simple get request - Stack Overflow

    44 I am making this simple get request using jquery ajax: ... It's returning an empty string as a result. If i go to this link in my browser, i get: ... which is the expected result. So why isn't it working using ajax? …

  5. What is the { get; set; } syntax in C#? - Stack Overflow

    When implementing a get/set pattern, an intermediate variable is used as a container into which a value can be placed and a value extracted. The intermediate variable is usually prefixed with an …

  6. How to make an HTTP get request with parameters - Stack Overflow

    Feb 5, 2009 · Is it possible to pass parameters with an HTTP get request? If so, how should I then do it? I have found an HTTP post requst (link). In that example the string postData is sent to a webserver. I …

  7. rest - HTTP GET with request body - Stack Overflow

    Jun 11, 2009 · Not only does the HTTP spec allow body data with GET request, but this is also common practice: The popular ElasticSearch engine's _search API recommends GET requests with the query …

  8. What is the difference between POST and GET? [duplicate]

    Aug 13, 2010 · Finally, an important consideration when using GET for AJAX requests is that some browsers - IE in particular - will cache the results of a GET request. So if you, for example, poll using …

  9. Why dict.get (key) instead of dict [key]? - Stack Overflow

    Jun 15, 2012 · I came across the dict method get which, given a key in the dictionary, returns the associated value. For what purpose is this function useful? If I wanted to find a value associated with …

  10. Passing array in GET for a REST call - Stack Overflow

    Aug 14, 2012 · Passing array in GET for a REST call Asked 13 years, 8 months ago Modified 5 years, 3 months ago Viewed 246k times