You can also use the and keys
| Additions are marked like this |
virtualenv is a software program to create isolated Python package environments. By default, python programs will have access to python packages in the program's directory and packages that are system-wide; these system-wide packages are shared between different python programs. virtualenv allows for the creation of python environments that are not necessarily shared between python programs. |