Learning the 'time' Module and strftime() Function in Python
Below is the Program to Greet you as per current time of your local system
import time
import time
timestamp=time.strftime('%H:%M:%S')
a=input("Enter your Name :")
print(timestamp)
timestamp=time.strftime('%H')
print(timestamp)
#timestamp=time.strfti...
pythonchallenge.hashnode.dev1 min read