From 02379ebe4f96a25acacf0490a558576d4dfd9f6b Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Luiz=20Ot=C3=A1vio?= Date: Fri, 28 Oct 2022 11:31:29 -0300 Subject: [PATCH] =?UTF-8?q?range=20+=20for=20para=20usar=20intervalos=20de?= =?UTF-8?q?=20n=C3=BAmeros?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- aula44.py | 8 ++++++++ 1 file changed, 8 insertions(+) create mode 100644 aula44.py diff --git a/aula44.py b/aula44.py new file mode 100644 index 0000000..18d1537 --- /dev/null +++ b/aula44.py @@ -0,0 +1,8 @@ +""" +For + Range +range -> range(start, stop, step) +""" +numeros = range(0, 100, 8) + +for numero in numeros: + print(numero)