pythonでランダム秒数待つ 不定期な秒数sleepする Python

python で ランダム秒数待つ 不定期な秒数sleepする 

import time
import random

sleep_sec = random.randint(1 5)

print(sleep_sec)
print( hoge1 )
time.sleep(sleep_sec)
print( hoge2 )