One can simply use map with join to get desired result:
"".join(map(lambda x,y: x+y, astr, bstr))
zip in not needed here since 2 strings/lists can be provided to map which has a lambda function that takes 2 arguments. Also, + symbol works to concatenate 2 strings here.