ayy = 0
while True:        
    ayy = ayy + 1                                 
    print(Randoz(a,b,c,d))           
    if ayy % 3 == 0:                  
    omg = input('Do you wish to stop the loop?, if yes type yes, if not, type no')   
    if omg == 'yes':                           
     break     
    if omg == '':
    ayy = ayy                   
i am trying to make a loop that every 3 laps stops and asks the user if he wants to break, and to have an option to not do anything and continue the loop, i cant seem to figure out how to continue it without the user doing anything, i need to press enter for it to do another loop.
randoz is a function i made, non relevent.       
 
    