0
How could i generate list of range in reverse direction. I meand in descending order
Range(20,1,2) Expected output [20,18,16,14,12,10,8,6,4,2]
5 Antworten
+ 1
Perhaps Use List Slicing and See what happens...
Python Course
> More Types
>> Lists
Good Luck.
+ 1
I have this solution for you dude:
numbers=list(range(20,1,-2))
print(numbers)
>>>
[20, 18, 16, 14, 12, 10, 8, 6, 4, 2]
0
What is mean by finction list?
If indint write list word what will happen?
0
What is mean by finction list?
If indint write list word what will happen?
0
Can you repeat your question please?