0
direction = input("enter a direction: ")
if direction != "quit" and direction != "go north" and direction != "go south" and direction != "go east" and direction != "go west" and direction != "go up" and direction != "go down" and direction != "look":
    print ("please enter in the following format, go (north,east,south,west,up,down)")

elif direction == "quit":
    print ("OK ... but a small part of you may never leave until you have personally saved Muirfieland from the clutches of evil .. Bwahahahahahah (sinister laugh) ... the game should then end.")

elif direction == "look":
    print ("You see nothing but endless void stretching off in all directions ...")

else:
    print ("You wander of in the direction of " + direction)

我需要知道如何在 python 中做到这一点。例如,我需要扫描用户输入的前 2 个字母

i = user_input
#user inputs go ayisgfdygasdf

我需要它能够扫描用户输入,检查前 2 个字母是否正常,如果它们正常,但它无法识别第二个单词,在这种情况下是“ayisgfdygasdf”,然后打印“对不起,我做不到那”

4

4 回答 4

1

他也可以尝试使用:

    directions.split()

但在某些情况下可能需要使用 try/except。

有关拆分和方法的更多信息,请尝试使用:

    dir(directions)

查看对象方向有哪些方法

或者:

    help(directions.split) 

查看有关特定方法的帮助(在本例中为对象方向的方法拆分)

于 2013-04-01T23:14:18.027 回答
0

您可以索引输入的各个字符:

if direction[:2] == "go":
    print "Sorry, I can't do that."

但是,尝试为每个可能的输入分配一个 if-else 分支通常是一个糟糕的选择……很难快速维护。

在这种情况下,一种更简洁的方法可能是定义一个具有有效输入的字典,如下所示:

input_response = {"quit":"OK ... but", "go north": "You wander off north", \
                  "go south": "You wander off south"} # etc

然后,您可以将代码重新编写为:

try:
    print input_response[direction]
except KeyError:
    if direction[:2] == "go":
        print "Sorry, I can't do that."
    else:
        print ("please enter in the following format...")
于 2013-04-01T23:27:37.520 回答
0

您可以使用 [] 表示法通过索引访问 python 中字符串的字符。您可以通过输入 user_input[:2] 检查字符串中的前两个字符。此代码将包括所有字符,但不包括键入的索引。所以这个符号将包括 user_input[0] 和 user_input[1]。然后您可以检查 user_input[:2] 是否等于 'go',然后从那里继续。

希望这有帮助。

于 2013-04-01T23:09:11.323 回答
0

而是尝试使用:

direction = sys.stdin.readlines()

完成后可能需要您按 ctrl+D,但您将能够捕获更多内容。

此外,要获得子数组,您甚至可以检查:

direction[:2] != "go"

或者,对于更具可读性的代码:

if not direction.startswith("go"):

我还建议,为了使您的代码更具可读性,

defined_direction = frozenset(["quit", "go north", "go south"])
if( direction not in defined_direction):
   print "please enter...."
于 2013-04-01T23:10:06.290 回答