164k views
2 votes
How to take a set of numbers and turn them into a list in python

User Hardfork
by
6.1k points

1 Answer

3 votes

Answer:

numbers = (0, 9, 8, 7, 5, 2, 4, 5, 3)

numList = list(numbers)

print(numList)

Step-by-step explanation:

User Victor Bocharsky
by
6.7k points