Aug-23-2020, 08:08 AM
1 2 3 4 5 6 7 8 9 |
def check1(): import time if stat1 < 5 : while stat1 < 5 : print ( 'smaller_than_5' ) time.sleep( 1 ) print ( 'same_or_bigger_than_5' ) #I get the error message here. else : print ( 'same_or_bigger_than_5' ) |