How to Modify Lists Using Phyton
This instruction set is for beginners using Phyton. There are 5 basic modifications to a list using phyton, but this instruction set only includes how to make and name a list, add items, index, update and remove items in the list. To learn more about other modifications, look up more modifications to a list!
Supplies
Materials: Phyton IDLE application
Open Phyton IDLE Shell
Open the application
Name a List by Typing a Name for a Category of Your Own Choice
Note: In the example above, the chosen category is colors
Add an Equal Sign Next to It
Next to the Equal Sign, Add Items to a List by Typing ‘[‘ + the Items You Want in the List Divided by ‘,’ and Close It With ‘]’ , Hit Enter
Note: In the example above, the items in the list above are strings (words) which is why it needs a quotation mark but if it is numbers, it does not need any.