From 2cc556c9e8ea0918499bff8d84584d1d1749c13d Mon Sep 17 00:00:00 2001 From: TimoshenkoAA Date: Mon, 22 Sep 2025 13:34:20 +0000 Subject: [PATCH] =?UTF-8?q?=D0=98=D0=B7=D0=BC=D0=B5=D0=BD=D0=B8=D0=BB(?= =?UTF-8?q?=D0=B0)=20=D0=BD=D0=B0=20'TEMA3/report3.md'?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- TEMA3/report3.md | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/TEMA3/report3.md b/TEMA3/report3.md index b3e0b34..5f610c9 100644 --- a/TEMA3/report3.md +++ b/TEMA3/report3.md @@ -552,9 +552,10 @@ TypeError: can't mod complex numbers. ['abc', 'de', 'fg', 'hi', 'jkl'] ``` Кортежи +``` >>> ('abc','de','fg')+('hi','jkl') ('abc', 'de', 'fg', 'hi', 'jkl') - +``` Конкатериновать словари и множества нельзя. ``` >>> {'one':1 , 'two':2} + {'three':3}