We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
`"""/*
def milisegundos(dias, hora, minutos, segundo):
total_horas = (dias * 24) + hora total_minutos = (total_horas * 60) + minutos total_segundos = (total_minutos * 60) + segundo milisegundos = total_segundos * 10 ** (3) return milisegundos
print(milisegundos(3, 2, 54, 5))`
The text was updated successfully, but these errors were encountered:
No branches or pull requests
`"""/*
*/
"""
def milisegundos(dias, hora, minutos, segundo):
print(milisegundos(3, 2, 54, 5))`
The text was updated successfully, but these errors were encountered: