Skip to content

Instantly share code, notes, and snippets.

View RRRoger's full-sized avatar
:octocat:
Wubba lubba dub dub

Roger RRRoger

:octocat:
Wubba lubba dub dub
View GitHub Profile
@RRRoger
RRRoger / min2millisec.py
Created September 21, 2018 03:12
min2millisec
def min2millisec(t):
"""
将`03:36`转化成毫秒
:param t: min string like '00:43'
:return: millisec int
"""
if not t:
return t
tim = t.split(":")[::-1]
depth = 0