Write a python program to create a series from ndarray of all the odd values from range 1 to 100.
Answers
Answered by
2
Answer:
# Python program to print odd Numbers in given range
start, end = 4, 19
# iterating each number in list
for num in range(start, end + 1):
# checking condition
if num % 2 != 0:
print(num, end = " ")
Similar questions