I\'m trying to add the output in the given range, how do i do this with python 3?
x = list(range(1,10)) for num in x:
if num%3 == 0: print(num) eli