So I need to display current time, I only print now.hour and now.minutes, however there is always 00 that's displayed for seconds that I would like to take away
this is my code
now = datetime.datetime.now()
print(datetime.time(now.hour, now.minute))
this is my out put
16:40:00