How can I output list of elements in range(10) in python3 like the outout of the same in python2
Hi Gilbert!
Thanks for reaching out.
You can help yourself with the list() function.
Example:
list(range(10))
Hope this helps.
Best,
Martin
Thank you Martin.
You are welcome!