[Solved] How to take time as a input from user in the form HHMM and then run a function at that time
You can use datetime to perform the necessary calculations. In this example, the target time is parsed using strptime but the date is not supplied so the time part is correct but the date part is wrong. The first three fields (year, month, day) are then replaced with today’s date to produce a datetime object … Read more