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

  • Home
  • SEARCH
  • 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 8896843
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 15, 20262026-06-15T00:10:52+00:00 2026-06-15T00:10:52+00:00

I need to figure out the delay between sending a command to change the

  • 0

I need to figure out the delay between sending a command to change the background color or playing a sound and these events actually occurring using timeit.(I’m on windows, Python 2.73)
I’m doing a reaction time test where I’ll record the time(using time.clock()) before either changing the background color or playing a sound. Then, when the subject presses a key I record the time again and take difference to find the reaction time.
For the sound playing, here’s what I did:

import timeit
t = timeit.Timer(stmt = "winsound.PlaySound('C:\WINDOWS\media\Windows XP Error.wav', winsound.SND_FILENAME)",setup = "import winsound")
n = t.timeit(number = 100) 
print n/100 -0.999  

The 0.999 is the duration of the Windows XP Error.wav in seconds.
This gave me something like 56ms. I’m not sure if its reasonable and if its the right way to do it as well as should I be enabling the garbage collection or not?


For the background changing I’m having more problems. Since I’m doing the test in fullscreen mode I tried to put all of these into the setup parameter:

from Tkinter import Tk
root=Tk()
root.overrideredirect(True)
root.geometry("{0}x{1}+0+0".format(root.winfo_screenwidth(),root.winfo_screenheight()))
root.mainloop()

Even though I separate them all with ; I still get syntax errors. When I try it not in full screen
setup = 'from Tkinter import Tk; root=Tk(); root.mainloop()' the window actually opens, yet nothing happens and if I close it I see other errors.Invalid command name "."
The statement that I’m actually measuring is root.configure(background='red').

  • 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-15T00:10:53+00:00Added an answer on June 15, 2026 at 12:10 am

    Here’s an example of a way to create a multi-line setup string for use with timeit:

    setup = """
    import random
    l1 = [random.randrange(100) for _ in xrange(100)]
    l2 = [random.randrange(100) for _ in xrange(10)]
    """
    

    Here’s another tip. To get an accurate measurement, it’s important to time things following this basic pattern:

    time = min(timeit.repeat(statements, setup=setup, repeat=R, number=N))
    

    With an R of at least 3 (R = 3). This takes the fastest value obtained by doing everything 3 times, which will eliminate differences due to the many other things running on your system in the background.

    This doesn’t answer your whole question, but may be helpful in your quest.

    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I need to figure out how to communicate between ViewModels. I'm new to MVVM
I need to figure out a way to set ValidateRequest at model...I understand that
I need to figure out a way to insert a record with a java.util.Date
I need to figure out the size of a remote file before I download
So i need to figure out how i can get a record count value
I understand that I need to figure out my own homework, but seeing that
From the following HTML I need to figure out which List tag has class
I have a piece of code where I need to figure out if a
I am optimizing an algorithm in ARM assembly and need to figure out in
I am making adobe air desktop app. I need to figure out how to

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.