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 は存在​​しません。代わりに input(prompt) を使用してください。それはほとんど同じように機能します。基本的な構文:

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 に答える