#BenU
- [ ] #task Do and send in report ➕ 2025-10-02 ⏳ 2025-10-03 📅 2025-10-03
## WRITING
# Assignment-04
Due: September 21, 2025 at 11:59 PM CDT
Hide details
### Instructions
Develop a program for keeping score in the Paper-Rock-Scissors game. Two users will input either 'P,' 'R,' or 'S.' The program will then declare the winner and provide the reason for their victory, which could be 'Paper covers Rock,' 'Rock breaks Scissors,' 'Scissors cut Paper,' or 'No winner.' It's important to ensure that the program accepts both lowercase and uppercase letters from users. Your program should also feature a loop that allows users to play repeatedly until they decide to finish.
**Sample Run:**
Player 1: Please enter either R)ock, P)aper, or S)cissors.
**R**
Player 2: Please enter either R)ock, P)aper, or S)cissors.
**s**
Player 1 wins.
Totals to this move:
Player 1: 1
Player 2: 0
Play Again? Y/y continues, other quits. Y
Player 1: Please enter either R)ock, P)aper, or S)cissors.
**S**
Player 2: Please enter either R)ock, P)aper, or S)cissors.
**P**
Player 1 wins.
Totals to this move:
Player 1: 2
Player 2: 0
Play Again? Y/y continues, other quits. y
Thanks
Player 1: Please enter either R)ock, P)aper, or S)cissors.
**P**
Player 2: Please enter either R)ock, P)aper, or S)cissors.
**S**
Player 2 wins.
Totals to this move:
Player 1: 2
Player 2: 1
Play Again? Y/y continues, other quits.y
Thanks
Player 1: Please enter either R)ock, P)aper, or S)cissors.
**P**
Player 2: Please enter either R)ock, P)aper, or S)cissors.
**P**
No winner.
Totals to this move:
Player 1: 2
Player 2: 1
Play again? Y/y continues other quits q
---
Thanks
**How to Submit Your Assignment Files on D2L**
1. Name your Python file as A4_*.py, where * is your last name. Your source code should include your name, the date, the assignment number, and appropriate comments.
2. Upload the file to the designated submission folder on D2L.
## Code attempt 1
```python
JupyMD: Create Jupyter notebook from note
```
```python
x = 6+10
x
```