pls answer this question as I can't send this question
Attachments:
Answers
Answered by
2
"""
Project Type: Brainly Answer
Date Created: 11-02-2021
Date Edited Last Time: ---NIL---
Question Link: https://brainly.in/question/34990563
Question: Generate the first five odd numbers between 1 - 20.
Program Created By: atrs7391
Programming Language: Python
Language version (When program created or last edited): Python 3.9.1
"""
lp = 0
for i in range(1, 20):
if i % 2 == 1:
print(i, end=" ")
lp = lp+1
if lp == 5:
break
Attachments:
Similar questions
Math,
2 months ago
English,
4 months ago
Science,
4 months ago
Social Sciences,
11 months ago
World Languages,
11 months ago