When I use >>> help(list)
I get a list of method descriptions, see below. But I'm struggling with a small bit of confusion. In the examples below what does the '/' inside the parentheses represent at the end of the methods? It seems to be present in all of them and I'm at a loss as to what it represents or where to find that specific answer.
| append(self, object, /)
| Append object to the end of the list.
|
| clear(self, /)
| Remove all items from list.
|
| copy(self, /)
| Return a shallow copy of the list.
|
| count(self, value, /)
| Return number of occurrences of value.....