write the python script for the following program:
1
1 3
1 3 5
1 3 5 7
1 3 5 7 9
Answers
Answered by
1
Answer:
1 3 5 7 9 11
Explanation:
Because you can see there , there is one - one number is missing after each number .
Answered by
1
rows = 10
for row in range(1, rows + 1,2):
for column in range(1, row + 1,2):
print(column, end=' ')
print("")
Similar questions