I want to print it starting from "Francisco" and ending with "Antonio", but keeping text with the numbers increasing, I really don't know where to go with this, I'm very new, thank you for helping!
list = ['Francisco', 'Marcelle', 'Olivia', 'José', 'Guilherme', 'Maria', 'Arthur', 'Lucas', 'Lurdes', 'Antonio']
for x in range(1,11) :
print(list[x] "your number on the list is, " + str(x) + ".")
In the last line I found how to keep text, add increasing number but I don't know how to print different element with range, for, I started programming not long
Example: Francisco, your number is 1, Marcelle, your number is 2, Antonio, your number is 10