WAP to display even numbers between 10 and 20.
for num in range(10, 21): if num % 2 == 0: print(num)
10 12 14 16 18 20