Hello, OnlineGDB Q&A section lets you put your programming query to fellow community users. Asking a solution for whole assignment is strictly not allowed. You may ask for help where you are stuck. Try to add as much information as possible so that fellow users can know about your problem statement easily.

in python, how do you show the time..

0 votes
asked Dec 25, 2019 by Vince Mendoza (220 points)

HOW DO I SHOW THE TIME

Hello there!(says the computer)

what is the time?

the time is : 1:12:123

2 Answers

+2 votes
answered Jan 8, 2020 by Александр Вологдин (180 points)
import time

print(time.strftime('the time is: %H:%M:%S')
+1 vote
answered Jan 10, 2020 by Yakubu30 (160 points)
This is the syntax

from datetime import datetime

now = datatime.now()

print '%02d:%02d:%02d' % (now.hour, now.minute, now.seconds)
Welcome to OnlineGDB Q&A, where you can ask questions related to programming and OnlineGDB IDE and and receive answers from other members of the community.
...