Respuesta :
Answer:
#Begin
a=2
k=0
temp=0
#Input
k=input()
temp=k
k=0
#Processing
while int(k)<int(temp):
print(a)
a=a+4
k=k+1
In this exercise, using the knowledge of computational language in python, we have that this code will be written as:
The code is in the attached image.
What is range?
The Python range function is a function native to the Python language that is used to generate a numerical sequence within a given range. It is normally used as an auxiliary to the for function. In Python, we can repeat an action a specified number of times using a for loop with the range function.
We can write the python as:
a=2
k=0
temp=0
k=input()
temp=k
k=0
while int(k)<int(temp):
print(a)
a=a+4
k=k+1
See more about python at brainly.com/question/13437928
