From 673aa8a295a6d60afbc0cefabef86c311d79e5eb Mon Sep 17 00:00:00 2001 From: LimaBR Date: Tue, 21 Jun 2022 02:03:12 -0300 Subject: [PATCH] for loop --- main.py | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/main.py b/main.py index 5e7916e..e520f92 100644 --- a/main.py +++ b/main.py @@ -9,4 +9,6 @@ def fatorialrecursivo(numero): print ('Hello World') print (multiplica(2, 5)) -print (fatorialrecursivo(5)) \ No newline at end of file +print (fatorialrecursivo(5)) +for i in range(0, 10, 1): + print (fatorialrecursivo(i))