Name:_______________________

def sum(i, j): # Fill in the code here to return the sum of i and j. return i + j. Show the printout of the following code: def main(): i = 0. while i = 1: if i % 3 != 0: print(i, end = " ") i -= 1. print() main() 1 2 1 . 2 1 . 4 2 1 . i is 5. Write a function to compute the ... ................
................