From 70826280785e3b81c44d29bc57a31d4eae5c4088 Mon Sep 17 00:00:00 2001 From: Meera Antony Date: Tue, 21 Jul 2026 11:47:06 +0530 Subject: [PATCH] changed Welcome message --- FunProjects/rockPaperSiss.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/FunProjects/rockPaperSiss.py b/FunProjects/rockPaperSiss.py index 979fe71..af22fbd 100644 --- a/FunProjects/rockPaperSiss.py +++ b/FunProjects/rockPaperSiss.py @@ -1,7 +1,7 @@ import random def rock_paper_scissors(): - print("Welcome to Rock, Paper, Scissors!") + print("Welcome to Rock, Paper, Scissors! Let's play!") choices = ["rock", "paper", "scissors"] while True: user_choice = input("Enter rock, paper, or scissors (or 'quit' to exit): ").lower()