Обновить less2.md

This commit is contained in:
parent 2c950a4125
commit af32342af5
1 changed files with 2 additions and 1 deletions

View File

@ -2,7 +2,8 @@
### List (Списки, похожи на массивы в 1С) ### ### List (Списки, похожи на массивы в 1С) ###
```python ```python
price = [75, 80, 15, 41]print(type(price), price) price = [75, 80, 15, 41]
print(type(price), price)
print(price[0], price[1]) print(price[0], price[1])
price.append(23) price.append(23)
print(price) print(price)