//import random
print ("Name Generation")
Main character = input()
print "The name of the main character"
f"{Heroine}")
while 1:
power = random.randrange(3, 9)
health = random.randrange(5, 9)
mana = random.randrange(1, 5)
luck = random.randrange(0, 3)
print(f"power = {power}, health = {health}, mana = {mana}, luck = {luck}")
print("Restat? Y/N")
A = input()
if A == "Y":
print("GAME START")
if A == "N":
print("OK GOD BLESS YOU")
B = input()
if B == "Y":<<<
continue
elif B == "N":
print("Setting Complete")
print(f"""
[Status]
Name = {Heroine}
occupation = adventurer
Physical strength = {health}
Combat power = {power}
Luck = {lucky}
Mana = {mana}"")
<<< There was a continuation not professionally in loop error in the marked place, so I searched it It's called an indentation error, so even though I unified it with a tab and unified it with a space bar, the error keeps popping up
python continue
If you have to operate from the print under the while statement to the while statement, you can indent it.
import random
print ("Name Generation")
Main character = input()
print "The name of the main character"
f"{Heroine}")
while 1:
power = random.randrange(3, 9)
health = random.randrange(5, 9)
mana = random.randrange(1, 5)
luck = random.randrange(0, 3)
print(f"power = {power}, health = {health}, mana = {mana}, luck = {luck}")
print("Restat? Y/N")
A = input()
if A == "Y":
print("GAME START")
if A == "N":
print("OK GOD BLESS YOU")
B = input()
if B == "Y":
continue
elif B == "N":
print("Setting Complete")
print(f"""
[Status]
Name = {Heroine}
occupation = adventurer
Physical strength = {health}
Combat power = {power}
Luck = {lucky}
Mana = {mana}"")
572 rails db:create error: Could not find mysql2-0.5.4 in any of the sources
610 GDB gets version error when attempting to debug with the Presense SDK (IDE)
912 When building Fast API+Uvicorn environment with PyInstaller, console=False results in an error
617 Uncaught (inpromise) Error on Electron: An object could not be cloned
© 2024 OneMinuteCode. All rights reserved.