Python - 变量既可以是int也可以是str

时间:2015-05-16 17:15:11

标签: python string int primes

这是我的代码:

def retest2():
    print "Type in another chapter title! Or type \"Next\" to move on."
    primenumbers2()
def primenumbers1():
    print "--------------------------------------------------\nChapters in books are usually given the cardinal numbers 1, 2, 3, 4, 5, 6 and so on.\nBut I have decided to give my chapters prime numbers 2, 3, 5, 7, 11, 13 and so on because I like prime numbers.\n\nType in the chapter title of my book (a prime number) and I will tell you what cardinal number the chapter is."
def primenumbers2():
    prime = (str(input("\n")))
    chapter = (2,3,5,7,11,13,17,19,23,29,31,37,41,43,47,53,59,61,67,71,73,79,83,89,97,101,103,107,109,113,127,131,137,139,149,151,157,163,167,173,179,181,191,193,197,199,211,223,227,229,233)

    if "Next" in prime or "next" in prime:
        print "--------------------------------------------------\nOnto the next thing."
    elif int(prime) in chapter:
        print "Chapter ",chapter.index(int(prime)) + 1
        retest2()
    elif prime.isalpha:
        print "That is not one of my chapter numbers because {0} is not a prime number. Try again.".format(prime)
        primenumbers2()

primenumbers1()
primenumbers2()

所以我要做的就是让用户输入一个素数,输出是与该素数相关的基数。但是,我希望用户可以选择通过键入"Next""next"进入下一个功能。因此,我的变量输入prime需要适应字符串和整数输入。所以我将其设置为(str(input("\n"))),然后在需要时将其转换为int(prime)

除非字符串输入为"Next""next",否则一切正常。例如,如果我输入"好的",我收到错误消息:

File "prime.py", line x, in primenumbers2
    prime = (str(input("\n")))
  File "<string>", line 1, in <module>
NameError: name 'okay' is not defined

但如果我输入&#34; 4&#34 ;,这不是素数,程序就可以了,我得到了:

That is not one of my chapter numbers because 4 is not a prime number. Try again.

程序循环回primenumbers2()以重启该功能。

请帮助我完成这项工作!

3 个答案:

答案 0 :(得分:2)

你需要对python2使用raw_input,python2中的input基本上是eval(raw_input()),因为你没有定义变量okay,你就会得到错误。

In [10]: prime = (str(input("\n")))

foo
---------------------------------------------------------------------------
NameError                                 Traceback (most recent call last)
<ipython-input-10-15ff4b8b32ce> in <module>()
----> 1 prime = (str(input("\n")))

<string> in <module>()

NameError: name 'foo' is not defined    
In [11]: foo = 1 
In [12]: prime = (str(input("\n")))
foo
In [13]: prime = (raw_input("\n"))
next
In [14]: print prime
next

您应该很少使用input

您还应该使用while循环,如下所示:

 def primenumbers2():
    chapter = (
        2, 3, 5, 7, 11, 13, 17, 19, 23, 29, 31, 37, 41, 43, 47, 53, 59, 61, 67, 71, 73, 79, 83, 89, 97, 101, 103, 107,
        109,
        113, 127, 131, 137, 139, 149, 151, 157, 163, 167, 173, 179, 181, 191, 193, 197, 199, 211, 223, 227, 229, 233)
    while True:
        prime = input("Type in another chapter title! Or type \"Next\" to move on.")
        if "next"  == prime.lower():
            print("--------------------------------------------------\nOnto the next thing.")
            break
        try:
            p = int(prime)
            if p in chapter:
                print("Chapter {}".format(chapter.index(p) + 1))
            else:
                 print("That is not one of my chapter numbers because {0}"
                  " is not a prime number. Try again.".format(prime))
        except ValueError:
            print("Invalid input")

不完全确定你想要做什么,但是使用一段时间,检查用户输入是否等于next,如果没有尝试使用try / except转换为int是一个更好的主意。

将章节作为一个词典也是一个更好的主意,按键访问章节编号:

def primenumbers2():
    chaps = (
        2, 3, 5, 7, 11, 13, 17, 19, 23, 29, 31, 37, 41, 43, 47, 53, 59, 61, 67, 71, 73, 79, 83, 89, 97, 101, 103, 107,
        109,
        113, 127, 131, 137, 139, 149, 151, 157, 163, 167, 173, 179, 181, 191, 193, 197, 199, 211, 223, 227, 229, 233)

    chapter = dict(zip(chaps, range(1, len(chaps) + 1)))
    while True:
        prime = input("Type in another chapter title! Or type \"Next\" to move on.")
        if "next" == prime.lower():
            print("--------------------------------------------------\nOnto the next thing.")
            break
        try:
            p = int(prime)
            if p in chapter:
                print("Chapter {}".format(chapter[p]))
            else:
                print("That is not one of my chapter numbers because {}"
                      " is not a prime number. Try again.".format(prime))
        except ValueError:
            print("Invalid input")

range(1, len(chaps) + 1))意味着章节中的每个p都会有一个与元组中的索引相对应的值。

答案 1 :(得分:1)

您要做的是将用户输入的值转换为字符串或int。如果您使用input,就像Padraic所说的那样等于eval(raw_input()),您将评估输入,因为它是一个python命令:如果您编写任何不存在的名称,这将引发错误。要解决此问题,请使用raw_input功能。它将返回一个str对象,即输入文本。

然后,您要查找此文本是数字还是字符串。一种解决方案是使用例外:

try:
    prime = int(prime)

    # Here the code assuming prime is a number, an `int`
except ValueError:
    # here the code assuming prime is a string, `str`, for example
    # 'Next', 'next' or 'okay'

答案 2 :(得分:0)

尝试使用isdigit来避免异常:

def primenumbers2():
prime = (str(input("\n")))
chapter = (2,3,5,7,11,13,17,19,23,29,31,37,41,43,47,53,59,61,67,71,73,79,83,89,97,101,103,107,109,113,127,131,137,139,149,151,157,163,167,173,179,181,191,193,197,199,211,223,227,229,233)

if "Next" in prime or "next" in prime:
    print "--------------------------------------------------\nOnto the next thing."
elif prime.isdigit() and int(prime) in chapter:
    print "Chapter ",chapter.index(int(prime)) + 1
    retest2()
else:
    print "That is not one of my chapter numbers because {0} is not a prime number. Try again.".format(prime)
    primenumbers2()