Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 8123959
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 6, 20262026-06-06T06:19:33+00:00 2026-06-06T06:19:33+00:00

I am trying to modify the code below to check the input from a

  • 0

I am trying to modify the code below to check the input from a user. If the input is a string I want to generate an error see the function choiceTest(). But this doesn’t work and I get the following exception, can you help
graham

Choice your option:k
Traceback (most recent call last):
  File "C:\Users\Graham\bkup-workspaces\workspace\python-1\calculator.py", line 54, in <module>
    choice = menu()
  File "C:\Users\Graham\bkup-workspaces\workspace\python-1\calculator.py", line 18, in menu
    return input ("Choice your option:")    
  File "C:\Users\Graham\Desktop\letsussee\eclipse-java-helios-win32\eclipse\plugins\org.python.pydev_2.5.0.2012040618\PySrc\pydev_sitecustomize\sitecustomize.py", line 210, in input
    return eval(raw_input(prompt))
  File "<string>", line 1, in <module>
NameError: name 'k' is not defined

The code:

# calculator program

# NO CODE IS REALLY RUN HERE, IT IS ONLY TELLING US WHAT WE WILL DO LATER
# Here we will define our functions
# this prints the main menu, and prompts for a choice
def menu():
    #print what options you have

        print "Welcome to calculator.py"
        print "your options are:"
        print " "
        print "1) Addition"
        print "2) Subtraction"
        print "3) Multiplication"
        print "4) Division"
        print "5) Quit calculator.py"
        print " "
        return input ("Choice your option:")    
# this adds two numbers given

def add(a,b):
    print a, "+", b, "=", a + b

# this subtracts two numbers given
def sub(a,b):
    print b, "-", a, "=", b - a

# this multiplies two numbers given
def mul(a,b):
    print a, "*", b, "=", a * b

# this divides two numbers given
def div(a,b):
    print a, "/", b, "=", a / b

# decide if the choice is valid or not 
def choiceTest():


    isinstanceValue = isinstance(choice,int)
    instancevalueout = str(isinstanceValue)
    print "value is" + instancevalueout
    if not instancevalueout is "True":
       print " NOT AN INTEGER " + instancevalueout
       raise SystemExit

# NOW THE PROGRAM REALLY STARTS, AS CODE IS RUN
loop = 1
choice = 0
isinstanceValue = True
instancevalueout = ""

while loop == 1:
    choice = menu()
    choiceTest()
    if choice == 1:
        add(input("Add this: "),input("to this: "))
    elif choice == 2:
        sub(input("Subtract this: "),input("from this: "))
    elif choice == 3:
        mul(input("Multiply this: "),input("by this: "))
    elif choice == 4:
        div(input("Divide this: "),input("by this: "))
    elif choice == 5:
        loop = 0


print "Thankyou for using calculator.py!"

# NOW THE PROGRAM REALLY FINISHES
  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-06-06T06:19:34+00:00Added an answer on June 6, 2026 at 6:19 am

    Your problem is that you are using input() which (in Python 2.x) parses the input as Python code, meaning this will only work as intended if the user enters a string surrounded in quotes.

    You probably want raw_input() which gives you a string (as input() does in 3.x), and is more secure as it doesn’t allow the execution of arbitrary code. Note that it will then be up to you to try to convert this to a number, and catch the exception if that fails, telling you the user hasn’t entered a number.

    Type checking is frowned upon in Python, as it arbitrarily restricts classes – something which Python doesn’t normally do as it’s duck typed – it’s better to try to do what you want to do, and catch the exception if it fails, handling it gracefully. This is known as asking for forgiveness, not permission.

    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I am trying to modify the sample code below. It currently populates a View
In the code given below, I am trying to modify it in such a
I'm trying to modify the code from this script . Basically I'm trying to
I keep getting this error while trying to modify some tables. Here's my code:
I am trying to modify the NotePad sample code from the Android developer resources.
I've been trying to modify the AuditTrail code so that it does not copy
i've dev code for wifi scanning in python, now i trying to modify my
I'm trying to understand code that I bought so I can modify it. In
I'm trying to update (add/modify files) an existing JAR file, and this code (using
I am trying to modify the amcap, an application from Windows SDK's example to

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.