Part 1
Write a Python program that does the following.
Part 2
Provide your own examples of the following using Python lists. Create your own examples. Do not copy them from another source.
Provide the Python code and output for your program and all your examples.
my_string = 'platypus cat rabbit fox elephant ant parrot monkey butterfly piranha pig turtle lemur penguin herring chicken marten bear marmot mouse horse'
# String to list
my_list = my_string.split()
# Delete elements
my_list.remove('cat')
my_list.pop(-1)
del my_list[1]
# Sort list
my_list.sort()
# Add elements
my_list.append('owl')
my_list.insert(5,'giraffe')
my_list.extend(['rhino', 'fly'])
# List to string
final_string = ' '.join(my_list)
print(final_string)
Comments
Leave a comment