From 14d5fc502158993a05b4e54eaf82920aafe68934 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Luiz=20Ot=C3=A1vio?= Date: Tue, 25 Oct 2022 09:27:46 -0300 Subject: [PATCH] =?UTF-8?q?Concatena=C3=A7=C3=A3o=20(+)=20e=20repeti=C3=A7?= =?UTF-8?q?=C3=A3o=20(*)=20com=20operadores=20aritm=C3=A9ticos?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- aula10.py | 7 +++++++ 1 file changed, 7 insertions(+) create mode 100644 aula10.py diff --git a/aula10.py b/aula10.py new file mode 100644 index 0000000..d19af9d --- /dev/null +++ b/aula10.py @@ -0,0 +1,7 @@ +concatenacao = 'Luiz' + ' ' + 'Otávio' +print(concatenacao) + +a_dez_vezes = 'A' * 10 +tres_vezes_luiz = 3 * 'Luiz' +print(a_dez_vezes) +print(tres_vezes_luiz)