Payment form Payment form Contact information Required fields are followed by * Name: * Gender Male Female Address: Email: * Pincode: Payment Information Card Type: * Select card type Visa Rupays Card number Expiration date: CVV This is the payment form
#guessing our numbers by user print("Guess the number\n""You have only 7 guesses") n=1 while(True): i = int(input()) if i==18: print("You have guessed correct number") break else: if n<7: print("Remaining chances are", 7 - n) n = n + 1 if i<18: print("Enter little bit big number") elif i>18: print("Enter lesser number") else: print("you have lost your chances") break
Comments
Post a Comment