Skip to main content

Posts

Showing posts from August, 2021

Basic Python

  Check out above post here -  Instagram Code : import random while True:     choices=["rock","paper","scissors"]     computer=random.choice(choices)     player =None #None used to define a null value     while player not in choices:         player=input("Rock, Paper, or Scissors? : ").lower() #lowercase the string     if player==computer:         print("Computer :",computer)         print("Player : ",player)         print("Tie!!")     elif player=="rock":         if computer=="paper":             print("Computer :",computer) #paper             print("Player : ",player) #rock             print("You Lose!!")         else:             print("Computer :",computer) #scissors   ...