Menu
Menu
DaniWeb
Log In
Sign Up
Read
Contribute
Meet
Search
Search
About 271 results for
keyerror
- Page 1
Keyerror with image dpi
Programming
Software Development
12 Years Ago
by giancan
Hi guys, when I process some images (where apparently the dpi info is missing for python) I get a
Keyerror
: 'dpi'. Is there an easy way to capture this error or set the dpi to 72 if this info is not available? Thanks a lot
KeyError with Python dictionary
Programming
Software Development
7 Years Ago
by dhani09
… = 100 def remove_item(self): self.quantity -= 1 I get a
KeyError
each time in run the code. Any help will be…
Re: KeyError with Python dictionary
Programming
Software Development
7 Years Ago
by Gribouillis
This code does not throw a
KeyError
, it only defines two classes and does nothing.
Re: KeyError with Python dictionary
Programming
Software Development
7 Years Ago
by Gribouillis
…'], 1, msg='Quantity of items not correct after removing item')
KeyError
: 'Mango' If you look at the above code it means…
Re: Python KeyError
Programming
Software Development
15 Years Ago
by jlm699
…=python] # Code goes in here [/code][/noparse] that aside, the
keyerror
you're getting is when you try to call an…;<input>", line 1, in <module>
KeyError
: 'red' >>> [/code] You see that when I…
Python KeyError
Programming
Software Development
15 Years Ago
by galactica
…;./calculatemeans.py", line 32, in read_output hit[elems[1]]
KeyError
: '-0.428899' Can someone help me please? Sorry for being…
Re: KeyError with Python dictionary
Programming
Software Development
7 Years Ago
by dhani09
Apparently it does. I can't figure it out. Regarding the code doing nothing, I didn't create any objects because there are test cases that are to be run against the code. Here's the test file: import unittest class ShoppingCartTestCases(unittest.TestCase): def setUp(self): self.cart = ShoppingCart() …
Re: KeyError with Python dictionary
Programming
Software Development
7 Years Ago
by Emma Etigu
hey tried to get a solution but also gives an error. class ShoppingCart: items = {} def __init__(self, total = 0): self.total = total def add_item(self, item_name, quantity, price): self.item_name = item_name self.quantity = quantity self.price = price…
Re: Python KeyError
Programming
Software Development
15 Years Ago
by woooee
[QUOTE]0.0 -0.9 0.3 -0.4 0.6 -1.0 0.9 0.3 These colums always appear on the same line number. What I want to do is to get a list of all column1row1:column2row1 of all files, then a list of all column1row2:column2row2 and so on[/QUOTE]One way is to append to a list. So in the following code, "l" and "p" should be lists, …
Tkinter help - extra window?
Programming
Software Development
12 Years Ago
by chris99
…): self._opts[key] = opts[key] else:
KeyError
= '
KeyError
: Unknown option: "%s"' %key raise
KeyError
def enter(self, event=None): self._schedule…
problems with menu and main functions
Programming
Software Development
16 Years Ago
by pazoo
… try ..except to handle input for menu # for both
KeyError
and NameError and # call game choice functions while 1:…; choice = string.upper(raw_input(prompt)) try: selection[choice] except
KeyError
: print "'%s' is not a valid option. Try again…
problems with menu and main functions-correctly indented.
Programming
Software Development
16 Years Ago
by pazoo
… use try ..except to handle input for menu # for both
KeyError
and NameError and # call game choice functions while 1: prompt…: " choice = string.upper(raw_input(prompt)) try: selection[choice] except
KeyError
: print "'%s' is not a valid option. Try again…
Re: problems with menu and main functions
Programming
Software Development
16 Years Ago
by pazoo
… use try ..except to handle input for menu # for both
KeyError
and NameError and # call game choice functions while 1: prompt…: " choice = string.upper(raw_input(prompt)) try: selection[choice] except
KeyError
: print "'%s' is not a valid option. Try again…
Can't save comma embeded string as a key in list array
Programming
Software Development
14 Years Ago
by onthego
…'] = entry['printerName'][0] [\code] Results in a
Keyerror
over the "dn" variable:
KeyError
: 'CN=REHP004,OU=servers,DC=example,DC…
For-Loop List Problem
Programming
Software Development
14 Years Ago
by Musing888
… url entered for that code. [B]2.) Except
KeyError
:[/B] tests each code the user inputed is in …k = 1 break else: print "B" break except
KeyError
: print "C" j = 1 print "\nSorry,…
Re: For-Loop List Problem
Programming
Software Development
14 Years Ago
by Musing888
…print codeB try: url = urldict[codeB] break except
KeyError
: try: if urldict[int(codeB)] == "0… for " + str(codeB) + "." except
KeyError
: k = 1 print "\nSorry, "+ str(codeB)…
Re: For-Loop List Problem
Programming
Software Development
14 Years Ago
by Musing888
…a" url = urldict[codeB] break except
KeyError
: try: if urldict[int(codeB)] == "… " + str(codeB) + "." except
KeyError
: k = 1 print "\nSorry, "+ str(…
Re: For-Loop List Problem
Programming
Software Development
14 Years Ago
by Musing888
…a" url = urldict[codeB] break except
KeyError
: try: if urldict[int(codeB)] == "… " + str(codeB) + "." except
KeyError
: k = 1 print "\nSorry, "+ str(…
Take screenshot with python
Programming
Software Development
10 Years Ago
by tony75
…-packages\PIL\Image.py", line 1423, in save raise
KeyError
(ext) # unknown extension…
Re: Take screenshot with python
Programming
Software Development
10 Years Ago
by tony75
…-packages\PIL\Image.py", line 1423, in save raise
KeyError
(ext) # unknown extension
KeyError
: ''// >>>
Re: Take screenshot with python
Programming
Software Development
10 Years Ago
by tony75
…-packages\PIL\Image.py", line 1423, in save raise
KeyError
(ext) # unknown extension
KeyError
: '' >>> //
Prompt for file with filter return
Programming
Software Development
9 Years Ago
by Tcll
…quot;]) # make sure "filetypes" is a tuple except
KeyError
: pass def _fixresult(self, widget, result): if isinstance(result, …"]) # make sure "filetypes" is a tuple except
KeyError
: pass def _fixresult(self, widget, result): if result: # keep …
Re: Can't save comma embeded string as a key in list array
Programming
Software Development
14 Years Ago
by onthego
…;./test1.py", line 19, in ? result[dn1]['xyz'] = val1
KeyError
: 'ou=something,ou=elsewhere,dc=example,dc=com' [/code]
Re: For-Loop List Problem
Programming
Software Development
14 Years Ago
by Musing888
…; k = 1 ## break else: print "B" ## break except
KeyError
: print "C" j = 1 print "\nSorry, "…
Re: New to python Please Help.
Programming
Software Development
12 Years Ago
by crazy99
…) try: person_to_networks[key].append(new) except
KeyError
: person_to_networks[key] = [new] if not…(): try: person_to_networks[key].append(new) except
KeyError
: person_to_networks[key] = [new] line_number +=…
Re: getting object definitions from a restricted namespace
Programming
Software Development
9 Years Ago
by Tcll
…>", line 1, in <module> ns['base']
KeyError
: 'base' >>> ns['int'] Traceback (most recent call…>", line 1, in <module> ns['int']
KeyError
: 'int' >>>
HELP: Tkinter Text Widget problem
Programming
Software Development
16 Years Ago
by katak_guy
How do i access the '\n' (newline) character in text widget? because I've a problem doing my project. I would like to ignore the character but ......... if (A2int[plain[i]]=='\n') do the trick. Any ideas? [B]
KeyError
: '\n'[/B]
Re: HELP: Tkinter Text Widget problem
Programming
Software Development
16 Years Ago
by katharnakh
… (A2int[plain[i]]=='\n') do the trick. Any ideas? [B]
KeyError
: '\n'[/B][/QUOTE] hey, if you are asking how to…
Is there a way to write this without xml.dom.minidom?
Programming
Software Development
15 Years Ago
by pythonian4000
… comicPath = divTag.getElementsByTagName('a')[0].attributes['href'].value break except
KeyError
: #Ignore div tags with no class attribute pass if not…
my text game
Programming
Software Development
15 Years Ago
by tomtetlaw
… 1 99, in store if p.weapon == items[sitem[1]]:
KeyError
: 'o' any help would be appreciated
1
2
3
5
Next
Last
Search
Search
Forum Categories
Hardware/Software
Recommended Topics
Programming
Recommended Topics
Digital Media
Recommended Topics
Community Center
Recommended Topics
Latest Content
Newest Topics
Latest Topics
Latest Posts
Latest Comments
Top Tags
Topics Feed
Social
Forums
Top Members
Meet People
Community Functions
DaniWeb Premium
Newsletter Archive
Markdown Syntax
Community Rules
Developer APIs
Connect API
Forum API Docs
Tools
SEO Backlink Checker
Legal
Terms of Service
Privacy Policy
FAQ
About Us
Advertise
Contact Us
© 2024 DaniWeb® LLC