can anyone tell me the syntax to print last element of a list by list slice method | Sololearn: Learn to code for FREE!
New course! Every coder should learn Generative AI!
Try a free lesson
+ 1

can anyone tell me the syntax to print last element of a list by list slice method

22nd Feb 2021, 8:06 AM
Rahul Prasad
Rahul Prasad - avatar
4 Answers
+ 5
print(list[-1])
22nd Feb 2021, 8:10 AM
你知道規則,我也是
你知道規則,我也是 - avatar
+ 2
Here is some stuff on slices https://code.sololearn.com/cXNzv56rgiyL
7th Apr 2021, 10:23 PM
David Ashton
David Ashton - avatar
+ 1
CarrieForle thanks for the help
22nd Feb 2021, 9:27 AM
Rahul Prasad
Rahul Prasad - avatar
0
Rahul Prasad sorry, but as I know slice for list is used in JavaScript. In Python, however, we use pop()! If you're talking about JS: console.log(array.slice(-1)); But if you're talking about Python : print(array.pop()) Happy programming! :)
22nd Feb 2021, 9:18 AM
TheCoder