Answers for "python repeating if statement"

2

how to reapete the code in python

for i in range(4):  # 4 = number of times you want to run the code
  print("Hello World")
Posted by: Guest on July-12-2020
0

how to repeat if statement in python

def main():
    while True:
        again = raw_input("Would you like to play again? Enter y/n: ")

        if again == "n":
            print ("Thanks for Playing!")
            return
        elif again == "y":
            print ("Lets play again..")
        else:
            print ("You should enter either "y" or "n".")

if __name__ == "__main__":
    main()
Posted by: Guest on May-09-2020

Python Answers by Framework

Browse Popular Code Answers by Language