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")
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")
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()
Copyright © 2021 Codeinu
Forgot your account's password or having trouble logging into your Account? Don't worry, we'll help you to get back your account. Enter your email address and we'll send you a recovery link to reset your password. If you are experiencing problems resetting your password contact us