Respuesta :
Answer:
Following are the code to this question:
m=3#defining a variable m
while(m<22):#defining a while loop to count value
print(m)#print value
m=m+3#increment the value by 3
Output:
Please find the attached file.
Explanation:
Note: In the given question, it is not clear that what the question asks about so, we describe the code above and its description can be defined as follows.
In the above code, an integer variable m is defined, that holds an integer value, in the next step, it uses a while loop to increment the value by 3 and use the print method to print its calculated value.

The function prints multiples of 3 up to 21. The function is written in python 3 thus :
for num in range(3 , 24, 3):
#for loop through 3 up to but not including 24, and moves on steps of 3.
print(num)
#for each number looped through, print the number.
A sample run of the program and the output is attached below.
Learn more :https://brainly.com/question/19117781
