Quick actions

cmd+k|ctrl+k

Navigation

Languages

List Method

Snippet info

Language

Python

Visibility

public

Author

ankushsahu203

Created

2026-07-14T04:44:53.532319Z

Updated

2026-07-14T04:44:53.532319Z

basket=[1,2,3,4,5]

basket.extend([100])

new_list=basket.clear()


print(new_list)#it not producing result it just change



print(basket)
INFO