import random

signs = ["rock", "paper", "scissors"]


def get_computer_sign() -> str:
    pass


def compare(p1: str, p2: str) -> str:
    pass


def get_player_sign() -> str:
    pass


def play() -> None:
    while True:
        p = get_player_sign()
        c = get_computer_sign()
        res = compare(p, c)
        print("You picked " + p)
        print("Computer picked " + c)
        if res == "1":
            print("You win!")
        elif res == "2":
            print("You lose!")
        elif res == "tie":
            print("Tie!")
        else:
            print("Uh oh")
        again = input("Again? (any=yes) (n=no): ")
        if again == "n":
            break


if __name__ == "__main__":
    play()
