Python Forum
"NameError: name 'catName1' is not defined
Thread Rating:
  • 0 Vote(s) - 0 Average
  • 1
  • 2
  • 3
  • 4
  • 5
"NameError: name 'catName1' is not defined
#2
Hi,

first, the error message does not match your code. Yes, you'll get an NameError, but it will say that str1 is not known. When asking for help, please make sure you post the error message matching your code. Everything else in confusing.

On your problem: Code in the main body (=everything not inside a function or class) is executed top to bottom, line by line. So in your 2nd code block line 13 is executed frist and than line 15. But in line 15 you do the variable assignment, thus calling the variables in line 13 won't work, as nothing is assigned there.

For learning. I highly recommend to use the official Python tutorial at docs.python.org. It's the best resource for beginners. And it's free - free to use and free from mistakes. The latter unfortunately does not apply to many books.

Regards, noisefloor
Reply


Messages In This Thread
RE: "NameError: name 'catName1' is not defined - by noisefloor - Jun-22-2019, 07:43 PM

Possibly Related Threads…
Thread Author Replies Views Last Post
Exclamation NameError: name 'score' is not defined - Help? MrKnd94 13 5,258 Mar-06-2023, 10:54 PM
Last Post: deanhystad
  How to correct the NameError: name 'xx' is not defined? vokoyo 5 11,606 Feb-17-2021, 05:55 AM
Last Post: delonbest
  NameError: name 'os' is not defined, & load_files(sys.argv[1]) AryaIC 3 4,936 Nov-07-2020, 07:45 PM
Last Post: jefsummers
  Error in code NameError: name ' ' is not defined ppman00 11 6,743 Sep-18-2020, 05:22 AM
Last Post: ndc85430
  NameError: name 'print_string' is not defined jamie_01 2 2,154 Jun-11-2020, 05:27 AM
Last Post: buran
  NameError x not defined Bruizeh 5 5,525 Feb-27-2019, 10:59 AM
Last Post: Larz60+
  NameError: name 'mailbox_list' is not defined pythonnewb 2 4,861 Aug-06-2017, 09:31 PM
Last Post: pythonnewb

Forum Jump:

User Panel Messages

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