Python Forum
Thread Rating:
  • 0 Vote(s) - 0 Average
  • 1
  • 2
  • 3
  • 4
  • 5
Simple python code error
#6
In your code, the __init__() method creates the data dict:

def init(data):
  data['first'] = {}
  data['middle'] = {}
  data['last'] = {}
So, the keys are already set. When adding names to the second level dicts, the interpreter retrieves the empty dicts from the first level. In the original code, the interpreter cannot find those empty dicts because they do not exist.
Reply


Messages In This Thread
Simple python code error - by cls0724 - Mar-11-2020, 03:31 PM
RE: Simple python code error - by jefsummers - Mar-11-2020, 04:32 PM
RE: Simple python code error - by stullis - Mar-11-2020, 04:43 PM
RE: Simple python code error - by cls0724 - Mar-12-2020, 10:21 AM
RE: Simple python code error - by DeaD_EyE - Mar-12-2020, 10:41 AM
RE: Simple python code error - by stullis - Mar-12-2020, 07:45 PM

Possibly Related Threads…
Thread Author Replies Views Last Post
  Help with simple code JacobSkinner 1 361 Mar-18-2024, 08:08 PM
Last Post: deanhystad
  I have a code which is very simple but still I cannot detect what's wrong with it max22 1 515 Nov-07-2023, 04:32 PM
Last Post: snippsat
  Code error from Fundamentals of Python Programming van Richard L. Halterman Heidi 12 1,759 Jul-25-2023, 10:32 PM
Last Post: Skaperen
  Syntax error while executing the Python code in Linux DivAsh 8 1,695 Jul-19-2023, 06:27 PM
Last Post: Lahearle
  Compiles Python code with no error but giving out no output - what's wrong with it? pythonflea 6 1,603 Mar-27-2023, 07:38 AM
Last Post: buran
  help me simple code result min and max number abrahimusmaximus 2 951 Nov-12-2022, 07:52 AM
Last Post: buran
  Error in if-then-else python code Led_Zeppelin 6 2,423 Jul-27-2022, 07:53 PM
Last Post: deanhystad
  Simple encoding code ebolisa 3 1,491 Jun-18-2022, 10:59 AM
Last Post: deanhystad
  How would you (as an python expert) make this code more efficient/simple coder_sw99 3 1,839 Feb-21-2022, 10:52 AM
Last Post: Gribouillis
  Simple code question about lambda and tuples JasPyt 7 3,421 Oct-04-2021, 05:18 PM
Last Post: snippsat

Forum Jump:

User Panel Messages

Announcements
Announcement #1 8/1/2020
Announcement #2 8/2/2020
Announcement #3 8/6/2020