Answer:
Following are the program in the Python Programming Language.
#set for loop to generate numbers
for i in range(0,26):
#print the numbers with message
print("Generated number:",i)
Explanation:
Following are the description of the program:
- Set the for loop that iterates from the number 0 and end at 25(less than one in the range i.e., 26) and store in the variable 'i'.
- Finally, print the following variable 'i' with a message from the print function that is a built-in function that is used to display output of the object or variable or print any string.