Computer Science, asked by Sparshantsingh514, 16 hours ago

write a program in python to create the following list and add 10 to each item in the list​

Answers

Answered by 06anki004
0

Explanation:

The append() method in python adds a single item to the existing list. It doesn't return a new list of items but will modify the original list by adding the item to the end of the list. After executing the method append on the list the size of the list increases by one

Similar questions