I am making a program to estimate tile jobs easier. I have the user input the number of different tiles there are into a range list (ex: Tile = [1,2,3,4,5]
)
Now I would like to convert every one of those numbers into their own list (ex: 1 becomes TileA, 2 becomes TileB, etc).
nbtile = input("How many different types of tile is there?")
tile = list(range(1,(int(nbtile)+1)))