comment faire pour retourner une liste python

Solutions on MaxInterview for comment faire pour retourner une liste python by the best coders in the world

showing results for - "comment faire pour retourner une liste python"
Lucy
28 Feb 2020
1list[1,2,3,4,5,6]
2reverse(list)
3print(list)
4