You can do:
hstack = sum(zip(*data.values()), ())
This way, you don't need to specify each list. the star operator gets all of the values and pushes it as parameters into zip().