diff --git a/basic_examples/python_lists.py b/basic_examples/python_lists.py index 0251055..c1d15c2 100755 --- a/basic_examples/python_lists.py +++ b/basic_examples/python_lists.py @@ -26,4 +26,8 @@ jvm_langs.sort() print jvm_langs +# if we want to delete 1st element from list +del jvm_langs[0] +print(jvm_langs) +