From 77f08e60d0b862dbdecd762f423ef44ade20d040 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Luiz=20Ot=C3=A1vio?= Date: Thu, 27 Oct 2022 18:55:47 -0300 Subject: [PATCH] =?UTF-8?q?Operadores=20de=20atribui=C3=A7=C3=A3o=20com=20?= =?UTF-8?q?operadores=20aritm=C3=A9ticos?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- aula36.py | 10 ++++++++++ 1 file changed, 10 insertions(+) create mode 100644 aula36.py diff --git a/aula36.py b/aula36.py new file mode 100644 index 0000000..60e0cf1 --- /dev/null +++ b/aula36.py @@ -0,0 +1,10 @@ +""" +Operadores de atribuição += += -= *= /= //= **= %= +""" +contador = 10 + +### + +contador /= 5 +print(contador)