Im currently working on a program that will calculate the difference in hours between two time points. The variabels will always be on the same date. So what only matter is hours for me. Im planning to use datetime, but if there are other imports im open for other examples
# This is just a ruff idea of how it should work, but im aware it doesn't work
var1 = datetime.now().striftime('%H:%M')
var2 = 14:55 # This is just an example
vardiff = var2 - var1 # var2 is always bigger than var1
print(vardiff)