write a program to display all 3digits odd numbers
Answers
Answered by
0
Answer:
1,3,5
Explanation:
this is a odd three digits number
Answered by
0
Explanation:
Odd Number (3 digits) for a in range (100, 1000) if a % 2 = Output: 101, 103, 105, 107, .. ……
Similar questions