Skip to content

Instantly share code, notes, and snippets.

@mauromarano
Created November 15, 2012 16:21
Show Gist options
  • Save mauromarano/4079486 to your computer and use it in GitHub Desktop.
Save mauromarano/4079486 to your computer and use it in GitHub Desktop.
Funzione che ritorna l'ora attuale in millisecondi
from datetime import datetime
def microsends():
dt = datetime.now()
return dt.microsecond
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment