Quick actions

cmd+k|ctrl+k

Navigation

Languages

List method

Snippet info

Language

Python

Visibility

public

Author

lionel

Created

2023-08-26T08:15:26.554775Z

Updated

2023-08-26T08:53:01.628587Z

basket=['a','b','c','d','e']

new_basket = basket.pop(4)


print(basket)
print(new_basket)

sentence = ' '
new_sentences = sentence.join(['Hi','my','name', 'is','JoJo'])
print(new_sentences)

# List unpacknng
a,b,c,*other,d = [1,2,3,4,5,6,7,8,9]
print(a)
print(b)
print(c)
print(other)
print(d)
INFO