TABLE OF CONTENTS
- 3.7.1. Set my variable to create empty list :
- 3.7.2. Set my variable to create list with 10 :
- 3.7.3. Set my variable to create list with “Hello” :
- 3.7.4. Add 0 at the end of list variable :
- 3.7.5. Insert 0 at position 0 in list variable :
- 3.7.6.Replace entry at 0 position in list variable with 0 :
- 3.7.7. To get length of list in my variable :
- 3.7.8. To get entry at position 0 from list at my variable :
- 3.7.9. To get index of 0 in list variable :
- 3.7.10. Does the list variable contain ‘0’ ?
- 3.7.11. Is the list my variable empty ?
- 3.7.12. Delete items at first position from list variable :
- 3.7.13. Delete item at ‘0’ position from list variable :
- 3.7.14. Reverse list at my variable :
3.7.1. Set my variable to create empty list :
Block used to set variable to create a empty list
Example 3.7.1
3.7.2. Set my variable to create list with 10 :
Block used to set variables to create lists with different number values.
Example 3.7.2
3.7.3. Set my variable to create list with “Hello” :
Block used to set variables to create lists with words as values.
Example 3.7.3
3.7.4. Add 0 at the end of list variable :
Block used to add number values at the end of the list in the variable.
Example 3.7.4
3.7.5. Insert 0 at position 0 in list variable :
Block used to insert number values at the position ‘0’ in the variable.
Example 3.7.5
3.7.6.Replace entry at 0 position in list variable with 0 :
Block used to replace the value “0” at position in the list with variable and number value “0”.
Example 3.7.6
3.7.7. To get length of list in my variable :
An add-on block used to get the length list in a variable that is already saved.
Example 3.7.7
3.7.8. To get entry at position 0 from list at my variable :
An add-on block used to get entry position value from a list variable that is already saved.
Example 3.7.8
3.7.9. To get index of 0 in list variable :
An add-on block used to get index value from the list variable that is already saved.
Example 3.7.9
3.7.10. Does the list variable contain ‘0’ ?
An add-on block to check the variable list that contains value ‘0’.
Example 3.7.10
3.7.11. Is the list my variable empty ?
An add-on block to check if the variable is empty or not ?
Example 3.7.11
3.7.12. Delete items at first position from list variable :
This block used to delete items in the first position list at variable to enhance the list.
Example 3.7.12
3.7.13. Delete item at ‘0’ position from list variable :
This block used to delete items in the position list ‘0’ at variable to enhance the list.
Example 3.7.13
3.7.14. Reverse list at my variable :
Block used to reverse the list at my variable.