👤

Write a simple nested loop example that sums the even and odd numbers between 5 and 15 and prints out the computation.

Answer :

Answer:

for e in range(6, 15, 2):

for o in range(5, 15, 2):

calc = e+o

print(e, "+", o, "=", calc)

Explanation: