'Always receive 'You Lose' message in RPS against computer

For my exercise, I have to get the computer to play against the user in RPS. However, after both the computer and I input our action, the user will always receive a 'You Lose'.

    import random

def get_computer_move():
    """Deterministic 'random' move chooser"""
    options = ['rock', 'paper', 'scissors']
    return options[random.randint(0, 2)]

def game_result(move1, move2):
    """game_result *exactly* as defined in question one"""
    options = ["rock", "paper", "scissors"]
    if move1 == move2:
        return 0
    elif move1 == "paper" and move2 == "rock":
        return 1
    elif move1 == "rock" and move2 == "scissors":
        return 1
    elif move1 == "scissors" and move2 == "paper":
        return 1
    else:
        return 2


def main():
    """Runs a single game of PSR""" 
    print("Let's Play Paper, Scissors, Rock!")
    user1 = input("Player one move: ").lower()
    computer1 = print("The computer plays " + get_computer_move())
    game_result(computer1, user1)
    if user1 == computer1:
        return print("It's a draw")
    elif user1 == "paper" and computer1 == "rock":
        return print("You win")
    elif user1 == "rock" and computer1 == "scissors":
        return print("You win")
    elif user1 == "scissors" and computer1 == "paper":
        return print("You win") 
    else:
        return print("You lose")    
    
main()

Here is my code although it is quite messy.

What I want to happen is:

Let's Play Paper, Scissors, Rock!
Player one move: ROCK
The computer plays rock
It's a draw

But it will always come out as:

Let's Play Paper, Scissors, Rock!
Player one move: ROCK
The computer plays rock
You lose

Help would be appreciated.



Solution 1:[1]

print returns none, you want to save the computers move and then print that separately

computer1 =  get_computer_move()
print("The computer plays", computer1)

Sources

This article follows the attribution requirements of Stack Overflow and is licensed under CC BY-SA 3.0.

Source: Stack Overflow

Solution Source
Solution 1 Sayse