Here are some Python programs using while condition (basic examples): --- 1. Print numbers from 1 to 10 i = 1 while i <= 10: print(i) i += 1 --- 2. Print even numbers from 1 to 20 i = 1 while i <= 20: ...