From 27893e36c9565662fc43e6a3d72822c27d8e422e Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Luiz=20Ot=C3=A1vio?= Date: Tue, 25 Oct 2022 09:45:04 -0300 Subject: [PATCH] =?UTF-8?q?Precedencia=20de=20operadores=20aritm=C3=A9tico?= =?UTF-8?q?s?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- aula11.py | 6 ++++++ 1 file changed, 6 insertions(+) create mode 100644 aula11.py diff --git a/aula11.py b/aula11.py new file mode 100644 index 0000000..7f130f4 --- /dev/null +++ b/aula11.py @@ -0,0 +1,6 @@ +# 1. (n + n) +# 2. ** +# 3. * / // % +# 4. + - +conta_1 = (1 + int(0.5 + 0.5)) ** (5 + 5) +print(conta_1)