Advertisement
pkaislan

Untitled

May 5th, 2016
115
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.25 KB | None | 0 0
  1.  
  2. from datetime import datetime
  3.  
  4.  
  5.  
  6. if __name__ == '__main__':
  7.  
  8.  
  9. while ( True ):
  10.  
  11.  
  12. today = datetime.now()
  13. horas = today.hour
  14. minutos = today.minute
  15. segundos = today.second
  16.  
  17.  
  18. print (horas,":",minutos,":",segundos)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement