What is the module/method used to get the current time?
import datetime todays_date = datetime.date.today() print(todays_date) >>> 2019-10-12 # adding strftime will remove the seconds current_time = datetime.datetime.now().strftime('%H:%M') print(current_time) >>> 23:38