← come back | Golfdocs - Pyth

, - comma - length 2 list

Create a length 2 list, with any two items given as arguments.[1]

Synopsis

,<left side item><right side item>
Where <left side item> and <right side item> can be anything.

Example

,1 2
Try it online! Result:
[1, 2]

References

  1. pyth.herokuapp.com/rev-doc.txt

Fork this collection on GitHub! o/