✅ The verified answer to this question is available below. Our community-reviewed solutions help you understand the material better.
Mis on tulemus?
a = "Python"
b = "Java"
result = ""
for i in range(min(len(a), len(b))):
result += a[i] + b[-i]
print(result)