In my program I want it to await user input, while continuing the loop. because in the loop an audio clip plays (a ding sound) to remind me to manually input what I cant automate on my pc.
import audio
import time
wait_for_user = input('WAITING FOR INPUT')
while(wait_for_user != 'yes'):
wait_for_user = input('WAITING FOR INPUT')
audio(driver,'ding.mp3')
time.sleep(3)
Obviously it just stops at wait_for_user and doesn't continue, I just can't seem to even conceive of how to go about this.