From af32342af5033c70f11857767252c30ae048debf Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=D0=90=D0=BB=D0=B5=D0=BA=D1=81=D0=B5=D0=B9=20=D0=92=D0=B0?= =?UTF-8?q?=D0=BB=D0=B5=D0=BD=D1=82=D0=B8=D0=BD=D0=BE=D0=B2=D0=B8=D1=87=20?= =?UTF-8?q?=D0=96=D0=B5=D0=B1=D1=80=D0=B8=D0=BA=D0=BE=D0=B2?= Date: Wed, 24 Apr 2024 12:07:56 +0900 Subject: [PATCH] =?UTF-8?q?=D0=9E=D0=B1=D0=BD=D0=BE=D0=B2=D0=B8=D1=82?= =?UTF-8?q?=D1=8C=20less2.md?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- less2.md | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/less2.md b/less2.md index 386f962..20d0d24 100644 --- a/less2.md +++ b/less2.md @@ -2,7 +2,8 @@ ### List (Списки, похожи на массивы в 1С) ### ```python -price = [75, 80, 15, 41]print(type(price), price) +price = [75, 80, 15, 41] +print(type(price), price) print(price[0], price[1]) price.append(23) print(price)