Не может использовать время импорта и импортировать DateTime в том же сценарии в Python

from time import *
import time as t
from datetime import *
import datetime as dt

secs=6969
print (dt.timedelta(seconds=secs))
now = datetime.now()

#Time
current_time = now.strftime("%H:%M:%S")
print("Current Time =", current_time) 

#converting
conversion = dt.timedelta(seconds=secs)
print("Converted: ", conversion)

#sleep function
t.sleep (10)
BGFX