1

好的,所以我将其更改为:

if input('a'):
      print ("You: Gimme a gun!")

if input('b'):
       print ("You: Fine")

但是现在我没有选择,它迫使我选择a,然后又迫使我选择b,一旦我克服了这个障碍,我就把剩下的游戏放在了包里,但我真的需要帮助来解决这个问题出 PS 我是 python 的菜鸟

import time
Gimme=True
Fine=True




print ("James: Ah, it looks like subject 091-266 is awake")
time.sleep(4)
print ("Scarlet: Hello, do you remember anything? The crash or anything?")
time.sleep(4)
print ("You: What.... Where am I?")
time.sleep(3)
print ("Scarlet: Oh, where are my manners, this is the head quarters of the XionRepublic, Xion")                        
time.sleep(5)
print ("James: You were involved in Z-9102, code named Attack-Z")
time.sleep(4)
print ("Scarlet: We were able to pull you and three others out before we  were forced to...")                                             
print ("James: Exterminate Alpha Base 12.")
time.sleep(6)
print ("You: Exterminate?! Couldn't you just quarantine it?")
time.sleep(4)
print ("Scarlet: No, Alpha Base 12 had over 3,000 people in it, it was to risky to quarantine")      
time.sleep(5)
print ("James: Do you recognize these names, Noah, Alex or Robert?")
time.sleep(4)
print ("You: Yes Alex!? Why? Is he ok?!")
time.sleep(3)
print ("James: Yes, Yes he was one of the three.")
time.sleep(4)
print ("*ALARM! SECURITY BREACHED, SECURITY BREACHED*")
time.sleep(4)
print ("James: Scarlet lock the door!")
time.sleep(3)
print ("You: Whats going on?!")
time.sleep(3)
print ("James: Z's there here.")
time.sleep(3)
print ("*Screaming*")
time.sleep(2)
print ("You: I can fight!")
time.sleep(3)
print ("Scarlet: Trust me you are not in any condition to fight due to some of the drugs in you")   
print ("CHOICE")
print ("A.Gimme the gun!")
print ("B.Fine")

if raw_input() == Gimme:
    print ("You: Gimme a gun!")
if raw_input() == Fine:
    print ("You: Fine")
4

3 回答 3

5

如果您使用的是新版本的 python -- 3.xx -- 那么 raw_input 不再存在。改用输入(提示)。它的工作原理几乎相同。基本语法:

foo = input("some prompt"). 

输入的作用是从标准输入文件中读取一行,或者<stdin>. 它在 中打印提示(),然后等待用户输入。示例:(>>>是命令行提示符,<<<是输出

Command Line, interactive mode (or IDLE): 
>>> foo = input("GIMME SOME INPUT: ")  #tell it to take some input
<<<GIMME SOME INPUT: foo          # it prints out, "GIMME SOME INPUT:" user types in foo
>>> print(foo)
<<< foo

回复您的编辑:

用这个:

print ("CHOICE")
print ("A.Gimme the gun!")
print ("B.Fine")
choice = input("What do you choose?")
if choice == 'A' or choice == 'a':
    #Some Action 
if choice == 'B' or choice == 'b': 
    #Some Other Action  
于 2013-04-14T20:02:00.643 回答
1

您似乎正在使用 Python 3。在 Python 3 中,raw_input()已重命名为input().

于 2013-04-14T20:01:15.277 回答
1

重新提出您的新问题:

但是现在我没有选择它迫使我选择a 然后它迫使我选择b

那是因为您调用input()了两次,每次调用它时,系统都会提示您输入一些内容。您想调用一次,将获得的值存储在变量中,然后将该变量与可能的选择进行比较。

于 2013-04-14T20:20:43.210 回答