Day13- Exercise 02
Create a python program capable of greeting you with Good Morning, Good Afternoon and Good Evening. Your program should use time module to get the current hour.
import time
timestamp = time.strftime('%H:%M:%S')
print(timestamp)
timestamp = time.strft...
codingsplash.hashnode.dev1 min read