Write a program that uses a while loop to calculate and print the multiples of 3 from 3 to 21. Your program should print each number on a separate line. "in python btw"
Answers
Answered by
5
Answer:
i=0
for i in range(3,22,3):
print(i)
Explanation:
use intendation properly as it is in python .
i hope you got an answer. if so rate the answer and give thanks, brainliest.
Similar questions