This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| print("Read The Instruction ") | |
| print("Two players start from 0 and alternatively add a number from 1 to 10 to the sum ") | |
| print("The player who reaches 100 wins.") | |
| print("To Play Against Human Enter 1 ") | |
| print("To Play Against Computer Enter 2 ") | |
| y=int(input("Enter number")) | |
| #To play against human | |
| import random | |
| sum=0 | |
| if y==1: |