Answer:
Following are the code to this question:
for x in range(11, 21):#defining for loop that use range method that take two integer values
print(x," ")#print value
Output:
11
12
13
14
15
16
17
18
19
20
Step-by-step explanation:
In the given question, it is not clear that what question is asked about and by search I show above so, I try to help you hope you like it.
In the above-given python code, a for loop is declared that use an x variable with the range method, that uses two integer value, in which first value will start the loop and last value ends the loop, inside the loop print method is used, that print the value of the loop variable x.