I am currently working on POC on Alibaba Cloud and not authorized to share the information. I am a beginner in python. Let me consider an example to address my issue.
I am getting none
instead of list of values,
Example code:
NumSet={1,2,3,4,5,6,7,8,9,10}
NumList = list(NumSet).reverse()
print(NumList)
Output:
None
What I am missing?