0
私は文字列'16:40 'を持っており、この文字列と現在の文字列の差を分単位で計算したいと考えています。したがって、今度はと仮定するとは16:52で、その差は12分になります。Pythonの文字列との時差
私は、次のコードを持っている:次のタイプのエラーを取得
import time
tString = '16:40'
t1 = time.strptime(tString, "%H:%M")
now = time.time()
print (now - t1)
いる:
TypeError: unsupported operand type(s) for -: 'float' and 'time.struct_time'
だから私は今のための間違った種類作成しています - 任意のアイデア?私はあなたがそれを行うことができますので、日時を使用するために使用する
が重複する可能性をdatetime](http://stackoverflow.com/questions/466345/converting-string-into-datetime) – Juggernaut