1 行に一連の印刷ステートメントを入力しようとしている 37 行目で問題が発生しています。1 つは何かを伝えるためのもので、1 つは選択ステートメントを使用し、もう 1 つは variable を使用しますenemy11
。それをすべて1行で印刷するにはどうすればよいですか?
また、ランダムな選択で、パンチを選択したとします。それをどのように検出して、健康から取り除くことができますか? ということでパンチをチョイス。パンチされたと認識し、HPからパンチを奪う。
hp=100
enemy1=100
enemy2=200
boss=500
punch=10
kick=20
fatality=99999999
attacks = ['kick', 'punch', 'fatality']
from random import choice
from time import sleep
print("Welcome to Ultimate Fight Club Plus")
sleep(1)
print("What is your name?")
name=raw_input("> ")
print("Good luck"), name
sleep(1)
print("Choose your opponent")
enemy11=raw_input("> ")
print("You chose"), enemy11
sleep(1)
print("his health is"), enemy1
sleep(1)
print("Fight!")
while enemy1>1:
print("You can kick or punch")
fight1=raw_input("> ")
if fight1=="punch":
enemy1 -= punch
print("You punch him in the face")
sleep(1)
print("His health is now"), enemy1
sleep(1)
print(enemy11) print choice(attacks) print("You")
if fight1=="kick":
enemy1 -= kick
print("You kick him.")
sleep(1)
print("His health is now"), enemy1
print("You win!")