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.
Login
Login
OnlineGDB Q&A
Questions
Unanswered
Tags
Ask a Question
Ask a Question
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
Please
log in
or register to answer this question.
2 Answers
+2
votes
answered
Jan 8, 2020
by
????????? ????????
(
180
points)
import time
print(time.strftime('the time is: %H:%M:%S')
Please
log in
or register to add a comment.
+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)
Please
log in
or register to add a comment.
Welcome to OnlineGDB Q&A, where you can ask questions related to programming and OnlineGDB IDE and receive answers from other members of the community.
...