Python Forum
NameError x not defined
Thread Rating:
  • 0 Vote(s) - 0 Average
  • 1
  • 2
  • 3
  • 4
  • 5
NameError x not defined
#6
You should read the brief tutorial that ichabod801 shows above it will help
here's an example that might help:

>>> def choose_color(choice):
...     hue = ['red', 'yellow', 'green', 'blue']
...     return hue[choice]
... 
>>> def paint_my_car(color):
...     print('I will paint my car {}'.format(color))
... 
>>> paint_my_car(choose_color(0))
I will paint my car red
>>> paint_my_car(choose_color(2))
I will paint my car green
>>>
Reply


Messages In This Thread
NameError x not defined - by Bruizeh - Feb-27-2019, 06:02 AM
RE: NameError x not defined - by Larz60+ - Feb-27-2019, 06:08 AM
RE: NameError x not defined - by Bruizeh - Feb-27-2019, 06:28 AM
RE: NameError x not defined - by ichabod801 - Feb-27-2019, 06:34 AM
RE: NameError x not defined - by Bruizeh - Feb-27-2019, 06:38 AM
RE: NameError x not defined - by Larz60+ - Feb-27-2019, 10:59 AM

Possibly Related Threads…
Thread Author Replies Views Last Post
Exclamation NameError: name 'score' is not defined - Help? MrKnd94 13 9,158 Mar-06-2023, 10:54 PM
Last Post: deanhystad
  How to correct the NameError: name 'xx' is not defined? vokoyo 5 17,960 Feb-17-2021, 05:55 AM
Last Post: delonbest
  NameError: name 'os' is not defined, & load_files(sys.argv[1]) AryaIC 3 6,358 Nov-07-2020, 07:45 PM
Last Post: jefsummers
  Error in code NameError: name ' ' is not defined ppman00 11 11,581 Sep-18-2020, 05:22 AM
Last Post: ndc85430
  NameError: name 'print_string' is not defined jamie_01 2 2,801 Jun-11-2020, 05:27 AM
Last Post: buran
  "NameError: name 'catName1' is not defined tofif 3 7,126 Jun-24-2019, 06:05 AM
Last Post: perfringo
  NameError: name 'mailbox_list' is not defined pythonnewb 2 5,578 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