File size: 1,711 Bytes
b1d7433
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
e32478e
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
b1d7433
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
import streamlit as st
import random

# Define the moves
moves = ["Rock", "Paper", "Scissors"]

# Function to determine the winner
def determine_winner(player_move, computer_move):
    if player_move == computer_move:
        return "It's a tie!"
    elif (player_move == "Rock" and computer_move == "Scissors") or \
         (player_move == "Paper" and computer_move == "Rock") or \
         (player_move == "Scissors" and computer_move == "Paper"):
        return "You win!"
    else:
        return "You lose!"

# Streamlit app
st.title("Rock, Paper, Scissors")

st.write("Choose your move:")

# Create three horizontal buttons
col1, col2, col3 = st.columns(3)

with col1:
    if st.button("Rock"):
        player_move = "Rock"
with col2:
    if st.button("Paper"):
        player_move = "Paper"
with col3:
    if st.button("Scissors"):
        player_move = "Scissors"

# Ensure player_move is defined
if 'player_move' not in st.session_state:
    st.session_state.player_move = None

# Assign player move to session state if a move is made
if 'player_move' in locals():
    st.session_state.player_move = player_move

# If a move is selected, randomly choose a move for the computer and determine the result
if st.session_state.player_move:
    player_move = st.session_state.player_move
    computer_move = random.choice(moves)
    
    # Display player and computer moves
    col1, col2 = st.columns(2)
    with col1:
        st.write("Your move:")
        st.subheader(player_move)
    with col2:
        st.write("Computer's move:")
        st.subheader(computer_move)
    
    # Display result
    result = determine_winner(player_move, computer_move)
    st.write("Result:")
    st.subheader(result)