How can you convert the timedelta so that it only outputs "09:50" as a string instead of output: "9:50:00"?
from datetime import timedelta
y = 3
x = 30
time1 = timedelta(hours=6, minutes=20)
time2 = timedelta(hours=y, minutes=x)
future = time1 + time2
print(future)
future_str = str(future)
print(future_str)