Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 8981437
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 15, 20262026-06-15T20:20:08+00:00 2026-06-15T20:20:08+00:00

I am trying to simulate the scoring of a squash game using english rules.

  • 0

I am trying to simulate the scoring of a squash game using english rules.
These are:

  • Only the server is awarded a point if they win a rally.
  • If the server wins a rally, they receive a point and continue as server.
  • If the returner wins a rally, they become the server but don’t receive a point.
  • The first player to reach 9 points wins the game unless the score has reached 8-8.
  • If the score reaches 8-8, the player who reached 8 first decides whether to play to 9 or to 10.

The code I have is this:

import random

def eng_game(a,b):
    A = 'bob'
    B = 'susie'
    players = [A, B]

    server = random.choice(players)
    print server

    points_bob = 0
    points_susie= 0

    prob_A_wins = 0.4
    prob_B_wins = 0.6

    while points_bob or points_susie < 9:
        probability = random.random()
        print probability
        if probability < prob_A_wins and server == A:
            points_bob += 1
        elif probability < prob_A_wins and server == B:
            server == A
            print server

        if probability > prob_A_wins and server == B:
            points_susie += 1
        elif probability > prob_A_wins and server == A:
            server == B
            print server

        print points_bob
        print points_susie

This code returns that Susie wins 9-0 when in some cases the server should be swapped to Bob to win the point, but this doesn’t happen. The serve stays with Susie and she wins the point.

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-06-15T20:20:10+00:00Added an answer on June 15, 2026 at 8:20 pm

    I think the issue is the statements server == A and server == B should be server = A and server = B so that assignment takes place instead of a comparison.

    Another edge case bug I see is if probability ends up exactly 0.4 your program will act like that virtual serve never took place.

    I would change your loop to:

    while points_bob < 9 and points_susie < 9:
        probability = random.random()
        print probability
        if probability <= prob_A_wins and server == A:
            points_bob += 1
        elif probability <= prob_A_wins and server == B:
            server = A
            print server
    
        if probability > prob_A_wins and server == B:
            points_susie += 1
        elif probability > prob_A_wins and server == A:
            server = B
            print server
    
        print points_bob
        print points_susie
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I´m trying to simulate a table using only CSS and DIV. The problem is
I am trying to simulate a game in Python, given these probabilities how do
I am trying to simulate a scenario where connection to the server of one
I am trying to simulate linux command ls using linux api from c. Looking
I'm trying to simulate rotating box using Newton Physics and OpenGL. This is what
I am trying to simulate a simple MIPS processor using behavior code in Verilog.
I am trying to simulate a session using FactoryGirl / shoulda (it worked with
I am trying to simulate a keypress for enter key in selenium using the
I'm trying to simulate a click on an anchor tag using jQuery. I've been
I am trying to simulate an asynchronous file upload using an iframe. Here is

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.